/* ===== Pai & Filhos Mudanças — Site Institucional ===== */
:root {
  --azul: #16345e;
  --azul-escuro: #0e2444;
  --azul-claro: #1d4a86;
  --vermelho: #cf3a45;
  --whats: #25d366;
  --whats-escuro: #1eb958;
  --amarelo: #ffd76a;
  --cinza-bg: #f4f7fb;
  --texto: #2b3442;
  --texto-suave: #55617a;
  --branco: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(14, 36, 68, .12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--branco);
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.25; color: var(--azul); }

h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.center { text-align: center; margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.center-title { text-align: center; margin-bottom: 2rem; }

img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-bottom: .6rem;
}
.eyebrow-light { color: var(--amarelo); }

.section-head { max-width: 680px; margin-bottom: 2.6rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub { color: var(--texto-suave); font-size: 1.06rem; margin-top: .6rem; }
.section-sub-left { color: var(--texto-suave); margin-bottom: 1.5rem; }

/* ---- Reveal animation ---- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-wa { background: var(--whats); color: #fff; box-shadow: 0 6px 20px rgba(37, 211, 102, .35); }
.btn-wa:hover { background: var(--whats-escuro); transform: translateY(-2px); }
.btn-lg { font-size: 1.1rem; padding: 1.05rem 2rem; }
.btn-header { font-size: .95rem; padding: .6rem 1.1rem; box-shadow: none; white-space: nowrap; }
.btn-outline { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn-outline:hover { background: var(--azul); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---- Header ---- */
.site-header {
  background: var(--azul);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  transition: padding .25s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.logo img { width: 140px; height: auto; }
.nav-desktop ul { list-style: none; display: flex; gap: 1.9rem; }
.nav-desktop a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .98rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  position: relative;
  padding: .3rem 0;
  transition: color .15s ease;
}
.nav-desktop a:hover, .nav-desktop a.active { color: #fff; }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--amarelo);
  border-radius: 2px;
}
.burger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: .3rem; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--azul-escuro);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; }
.mobile-close { background: none; border: none; color: #fff; cursor: pointer; }
.mobile-menu nav { padding: 1rem 1.4rem 2rem; }
.mobile-menu nav ul { list-style: none; display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1.6rem; }
.mobile-menu nav a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu nav a.active { color: var(--amarelo); }

/* ---- Hero (home) ---- */
.hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 65%, #2a5da6 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; padding-top: 3.6rem; padding-bottom: 3.6rem; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: .45rem 1.1rem; border-radius: 999px; font-size: .92rem; font-weight: 500; margin-bottom: 1.3rem; }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: 1.1rem; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.88); margin-bottom: 1.4rem; max-width: 560px; }
.hero-areas { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 2rem; max-width: 560px; }
.hero-areas-item { display: flex; align-items: flex-start; gap: .55rem; font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.45; }
.hero-areas-item svg { flex-shrink: 0; margin-top: .15rem; color: var(--amarelo); }
.hero-areas-item strong { color: #fff; }
.hero-cta-note { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .8rem; }
.hero-img img { filter: drop-shadow(0 22px 34px rgba(0,0,0,.35)); }

/* ---- Page hero (páginas internas) ---- */
.page-hero { background: linear-gradient(135deg, var(--azul-escuro), var(--azul-claro)); color: #fff; padding: 3.2rem 0; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: .7rem; max-width: 760px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 640px; }

/* ---- Breadcrumbs ---- */
.breadcrumbs { background: var(--cinza-bg); padding: .8rem 0; font-size: .88rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; color: var(--texto-suave); }
.breadcrumbs a { color: var(--azul-claro); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { color: #b7c1d1; }

/* ---- Stats ---- */
.stats { background: var(--azul-escuro); color: #fff; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-top: 1.7rem; padding-bottom: 1.7rem; text-align: center; }
.stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1.85rem; font-weight: 700; color: var(--amarelo); }
.stat span { font-size: .92rem; color: rgba(255,255,255,.85); }

/* ---- Áreas (home) ---- */
.areas-summary { padding: 4.5rem 0; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.area-col { background: var(--cinza-bg); border-radius: var(--radius); padding: 1.8rem; }
.area-col h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.area-col p { color: var(--texto-suave); font-size: .98rem; margin-bottom: 1rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .92rem; color: var(--azul-claro); text-decoration: none; }
.link-arrow svg { transition: transform .15s ease; }
a:hover .link-arrow svg, .link-arrow:hover svg { transform: translateX(3px); }

/* ---- Serviços (cards home) ---- */
.services { padding: 4.5rem 0; background: var(--cinza-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 2rem; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform .18s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover { transform: translateY(-5px); }
.service-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.service-card h3 { font-size: 1.18rem; margin-bottom: .55rem; color: var(--azul); }
.service-card p { color: var(--texto-suave); font-size: .98rem; margin-bottom: .9rem; }

/* ---- Why / check list ---- */
.why { padding: 4.5rem 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-img { position: relative; }
.why-img > img:first-child { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 3; }
.why-badge { position: absolute; right: -14px; bottom: -20px; width: 120px !important; filter: drop-shadow(0 8px 18px rgba(0,0,0,.25)); }
.check-list { list-style: none; margin: 1.4rem 0; display: flex; flex-direction: column; gap: .8rem; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--texto-suave); font-size: .98rem; }
.check-list svg { flex-shrink: 0; margin-top: .2rem; color: var(--whats); }
.check-list strong { color: var(--texto); }

/* ---- Avaliações (carrossel) ---- */
.reviews { padding: 4.5rem 0; background: var(--cinza-bg); }
.reviews-carousel { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews-track { display: flex; gap: 1.6rem; width: max-content; padding: .5rem 0 1rem; animation: reviews-scroll 55s linear infinite; }
.reviews-carousel:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll { to { transform: translateX(calc(-50% - .8rem)); } }
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
  .reviews-carousel { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
.review-card { flex: 0 0 340px; background: #fff; border: 1px solid #e5eaf2; border-radius: var(--radius); padding: 1.7rem; box-shadow: 0 4px 16px rgba(14, 36, 68, .07); }
.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .8rem; }
.review-card p { font-size: .98rem; color: var(--texto); font-style: italic; }
.review-card footer { margin-top: 1rem; font-weight: 600; color: var(--azul); font-size: .96rem; }
.review-card footer span { display: block; font-weight: 400; font-size: .84rem; color: var(--texto-suave); }

/* ---- Blog preview / grid ---- */
.blog-preview { padding: 4.5rem 0; }
.blog-index { padding: 3rem 0 4.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.blog-grid-index { grid-template-columns: repeat(3, 1fr); }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .18s ease; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card-img { aspect-ratio: 3/2; overflow: hidden; background: var(--cinza-bg); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h2, .blog-card-body h3 { font-size: 1.08rem; margin-bottom: .6rem; }
.blog-card-body p { color: var(--texto-suave); font-size: .94rem; margin-bottom: 1rem; flex: 1; }

/* ---- FAQ ---- */
.faq-section { padding: 4.5rem 0; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details { margin: 0 0 .9rem; background: var(--cinza-bg); border-radius: 12px; padding: 1.1rem 1.5rem; }
.faq-list summary { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--azul); cursor: pointer; list-style: none; position: relative; padding-right: 2rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--azul-claro); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin-top: .8rem; color: var(--texto-suave); font-size: .98rem; }
.bg-tint { background: var(--cinza-bg); }

/* ---- CTA final ---- */
.cta-final { background: linear-gradient(135deg, var(--azul-escuro), var(--azul-claro)); color: #fff; }
.cta-final-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-top: 3rem; padding-bottom: 3rem; }
.cta-final h2 { color: #fff; margin-bottom: .4rem; }
.cta-final p { color: rgba(255,255,255,.85); font-size: 1.05rem; }

/* ---- Footer ---- */
.footer { background: var(--azul-escuro); color: rgba(255,255,255,.85); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; padding-top: 3.2rem; padding-bottom: 2.5rem; }
.footer h3 { color: #fff; font-size: 1.02rem; margin-bottom: .8rem; }
.footer p { font-size: .96rem; margin-bottom: .45rem; }
.footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-slogan { font-style: italic; margin: 1rem 0; color: rgba(255,255,255,.7); }
.footer-social { display: flex; gap: .7rem; margin-bottom: 1.1rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); }
.footer-social a:hover { background: rgba(255,255,255,.2); }
.footer-cards { width: 160px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 1.2rem 0; font-size: .88rem; color: rgba(255,255,255,.6); display: flex; flex-direction: column; gap: .3rem; }
.footer-bottom a { color: rgba(255,255,255,.75); }

/* ---- WhatsApp flutuante ---- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: var(--whats); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37, 211, 102, .5); animation: pulse 2.2s infinite; color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); } 70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ================= Serviços ================= */
.service-section { padding: 4rem 0; }
.service-section-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }
.service-section-img { position: relative; }
.service-section-img img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3; }
.service-section-img .tag { position: absolute; top: 14px; left: 14px; background: var(--vermelho); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; padding: .35rem 1rem; border-radius: 999px; }
.service-section-text h2 { margin-bottom: .8rem; }
.service-section-text > p { color: var(--texto-suave); margin-bottom: 1.2rem; }
.service-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; margin-bottom: 1.6rem; }
.related-posts { background: var(--cinza-bg); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; }
.related-posts h4 { font-size: .95rem; margin-bottom: .6rem; }
.related-posts ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.related-posts a { color: var(--azul-claro); text-decoration: none; font-size: .92rem; font-weight: 500; }
.related-posts a:hover { text-decoration: underline; }

/* ================= Quem Somos ================= */
.about-story { padding: 4.5rem 0; }
.about-story-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.about-story-text p { color: var(--texto-suave); margin-bottom: 1rem; }
.about-story-img img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3; }
.about-values { padding: 4.5rem 0; background: var(--cinza-bg); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.value-card { background: #fff; border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow); text-align: center; }
.value-card h3 { font-size: 1.05rem; margin: .6rem 0 .5rem; }
.value-card p { color: var(--texto-suave); font-size: .92rem; }
.about-gallery { padding: 4.5rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery-grid figure img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3; }
.gallery-grid figcaption { font-size: .78rem; color: var(--texto-suave); margin-top: .5rem; text-align: right; }
.gallery-grid figcaption a { color: var(--texto-suave); }

/* ================= Contato ================= */
.contact-section { padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; }
.contact-form-wrap h2 { margin-bottom: .5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .92rem; color: var(--azul); }
.form-row input, .form-row textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1.5px solid #dbe2ee;
  border-radius: var(--radius-sm);
  background: var(--cinza-bg);
  transition: border-color .15s ease, background .15s ease;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--azul-claro); background: #fff; }
.field-error { display: none; color: var(--vermelho); font-size: .84rem; }
.form-row.has-error input, .form-row.has-error textarea { border-color: var(--vermelho); }
.form-row.has-error .field-error { display: block; }
.contact-info h2 { margin-bottom: 1.4rem; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.contact-info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-info-list svg { color: var(--azul-claro); flex-shrink: 0; margin-top: .2rem; }
.contact-info-list strong { display: block; font-family: 'Poppins', sans-serif; font-size: .92rem; color: var(--azul); margin-bottom: .15rem; }
.contact-info-list a, .contact-info-list span { color: var(--texto-suave); text-decoration: none; font-size: .96rem; }
.contact-info-list a:hover { color: var(--azul-claro); text-decoration: underline; }
.contact-map { padding-bottom: 4.5rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ================= Post do blog ================= */
.post-header { background: linear-gradient(135deg, var(--azul-escuro), var(--azul-claro)); color: #fff; padding: 3rem 0 2.6rem; }
.post-header h1 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.3rem); max-width: 820px; margin-bottom: .8rem; }
.post-meta { color: rgba(255,255,255,.75); font-size: .92rem; }
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 3rem 0 4.5rem; align-items: start; }
.post-hero-img { margin-bottom: 2rem; }
.post-hero-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 3/2; }
.post-hero-img figcaption { font-size: .78rem; color: var(--texto-suave); margin-top: .5rem; text-align: right; }
.post-hero-img figcaption a { color: var(--texto-suave); }
.post-body h2 { font-size: 1.45rem; margin: 2.2rem 0 .9rem; }
.post-body h2:first-of-type { margin-top: 0; }
.post-body p { color: var(--texto); margin-bottom: 1.1rem; }
.post-body ul { margin: 0 0 1.2rem 1.3rem; color: var(--texto); }
.post-body li { margin-bottom: .5rem; }
.post-body a { color: var(--azul-claro); font-weight: 600; }
.post-cta-box { background: var(--cinza-bg); border-radius: var(--radius); padding: 2rem; margin-top: 2.5rem; text-align: center; }
.post-cta-box h3 { margin-bottom: .5rem; }
.post-cta-box p { color: var(--texto-suave); margin-bottom: 1.3rem; }
.post-cta-box .btn { margin: 0 .4rem; }
.post-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.4rem; }
.sidebar-box { background: var(--cinza-bg); border-radius: var(--radius); padding: 1.5rem; }
.sidebar-box h4 { font-size: .98rem; margin-bottom: .9rem; }
.sidebar-box ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.sidebar-box ul a { color: var(--texto); text-decoration: none; font-size: .92rem; }
.sidebar-box ul a:hover { color: var(--azul-claro); }
.sidebar-cta { background: var(--azul); color: #fff; }
.sidebar-cta h4 { color: #fff; }
.sidebar-cta p { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 1rem; }
.sidebar-cta .btn-outline { background: transparent; border-color: #fff; color: #fff; margin-top: .6rem; }
.sidebar-cta .btn-outline:hover { background: #fff; color: var(--azul); }

/* ---- Responsivo ---- */
@media (max-width: 1000px) {
  .nav-desktop, .btn-header { display: none; }
  .burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 2.6rem; padding-bottom: 2.6rem; }
  .hero-sub, .hero-areas { margin-left: auto; margin-right: auto; }
  .hero-areas-item { text-align: left; }
  .hero-img { order: -1; max-width: 420px; margin: 0 auto; }
  .services-grid, .areas-grid, .blog-grid, .values-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .why-inner, .about-story-inner { grid-template-columns: 1fr; }
  .about-story-img { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-final-inner { justify-content: center; text-align: center; }
  .cta-final h2 { text-align: center; }
  .service-section-inner { grid-template-columns: 1fr; }
  .service-section-inner.reverse { direction: ltr; }
  .service-section-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .post-sidebar .sidebar-box { flex: 1 1 260px; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .services-grid, .areas-grid, .blog-grid, .footer-inner, .values-grid, .gallery-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: 270px; }
  .logo img { width: 118px; }
  .hero h1 { font-size: 1.65rem; }
  .btn-lg { width: 100%; }
  .post-sidebar { flex-direction: column; }
  .post-cta-box .btn { display: block; margin: .5rem 0; }
}
