/* ════════════════════════════════════════════════════════
   CALHAS PROFISSIONAL — Landing Page Styles
   Paleta: #0C1E33 / #0D47A1 / #1DA1F2 / #F58220 / #BFC3C9
   Tipografia: Montserrat (principal) + Raleway (secundária)
   ════════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS ─── */
:root {
  --navy:      #0C1E33;   /* azul noite — fundo principal, header */
  --navy-2:    #16222E;   /* variante mais escura */
  --navy-3:    #2E3A47;   /* hover, bordas sutis */
  --blue:      #0D47A1;   /* azul escuro secundário */
  --blue-vivo: #1DA1F2;   /* azul vivo — destaques, ícones, links */
  --orange:    #F58220;   /* laranja — CTA quente, acentos */
  --silver:    #BFC3C9;   /* prata — elementos metálicos, texto secondary */
  --white:     #FFFFFF;
  --gray-text: #7D858E;   /* texto terciário */
  --line:      rgba(191, 195, 201, 0.2);
  --max:       1180px;

  --font-main: 'Montserrat', Arial, sans-serif;
  --font-sec:  'Raleway', Arial, sans-serif;
}

/* ─── RESET BASE ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 95px; }
body {
  margin: 0;
  color: var(--navy);
  background: #f4f6f9;
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── CONTAINER ─── */
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* ─── SKIP LINK (acessibilidade) ─── */
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ─── TIPOGRAFIA ─── */
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
}
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
}
h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.45rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-vivo);
  font-family: var(--font-sec);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow.dark { color: var(--blue); }

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(236, 240, 245, 0.98);
  border-bottom: 3px solid var(--orange);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(12, 30, 51, 0.10);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.22));
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  color: var(--navy);
  font-size: .84rem;
  font-weight: 700;
  font-family: var(--font-main);
  letter-spacing: .02em;
  transition: color .2s;
}
nav a:hover { color: var(--blue); }
.nav-cta {
  padding: 10px 20px;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 800;
  transition: background .2s, transform .2s;
}
.nav-cta:hover {
  background: #d96e18;
  transform: translateY(-1px);
  color: var(--white) !important;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--navy);
  padding: 9px 13px;
  color: var(--navy);
  background: transparent;
  font: inherit;
  cursor: pointer;
  font-size: .82rem;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy) url('assets/hero.jpg') center 30% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 30, 51, 0.97) 0%,
    rgba(12, 30, 51, 0.85) 45%,
    rgba(12, 30, 51, 0.45) 100%
  );
}
/* Detalhe gráfico de fundo — linhas diagonais metálicas */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(29, 161, 242, 0.04) 40px,
      rgba(29, 161, 242, 0.04) 41px
    );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .65fr);
  align-items: end;
  gap: 60px;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-copy { max-width: 700px; }
.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-sec);
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ─── BOTÕES ─── */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 2px solid transparent;
  font-family: var(--font-main);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .22s, color .22s, transform .22s, border-color .22s;
  cursor: pointer;
}
.button.primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.button.primary:hover {
  background: #d96e18;
  border-color: #d96e18;
  transform: translateY(-2px);
}
.button.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}
.button.ghost:hover {
  border-color: var(--blue-vivo);
  color: var(--blue-vivo);
}

/* ─── HERO POINTS ─── */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sec);
  font-size: .82rem;
}
.hero-points li::before {
  content: '◆';
  margin-right: 7px;
  color: var(--blue-vivo);
  font-size: .6em;
}

/* ─── QUOTE CARD (hero aside) ─── */
.quote-card {
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  border-top: 4px solid var(--blue-vivo);
}
.card-tag {
  color: var(--blue);
  font-family: var(--font-sec);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.quote-card h2 {
  margin: 14px 0;
  font-size: 1.75rem;
  color: var(--navy);
}
.quote-card p {
  color: var(--gray-text);
  font-family: var(--font-sec);
  font-size: .92rem;
  margin-bottom: 8px;
}
.quote-card a {
  display: block;
  margin-top: 10px;
  font-weight: 800;
  font-size: .92rem;
  color: var(--blue);
  transition: color .2s;
}
.quote-card a:first-of-type { color: var(--orange); }
.quote-card a:hover { color: var(--blue-vivo); }

/* ─── TRUST STRIP ─── */
.trust-strip { background: var(--blue-vivo); }
.trust-items {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.trust-items span {
  padding: 5px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-family: var(--font-sec);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}
.trust-items span:last-child { border: 0; }

/* ─── SEÇÃO CINZA ─── */
.section--gray { background: #f0f4f9; }

/* ─── STATS ─── */
.stats-section {
  background: var(--navy);
  padding: 60px 0;
  border-top: 3px solid var(--orange);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: 0; }
.stat-num {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-main);
}
.stat-num span {
  font-size: 55%;
  color: var(--orange);
  font-weight: 700;
}
.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-sec);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── GALERIA ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--navy-3);
  min-height: 220px;
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(12,30,51,0.85), transparent);
  color: var(--white);
  font-family: var(--font-sec);
  font-size: .8rem;
  font-weight: 600;
  z-index: 2;
}
/* Marca d'água do logo sobre cada imagem da galeria */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 220px;
  aspect-ratio: 878 / 375;
  background: url('assets/logo.png') center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.gallery-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, #0D47A1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder figcaption {
  position: static;
  background: none;
  color: rgba(255,255,255,0.7);
  padding: 60px 14px 14px;
  text-align: center;
}
.gallery-note {
  margin-top: 20px;
  font-family: var(--font-sec);
  font-size: .88rem;
  color: var(--gray-text);
  text-align: center;
}
.gallery-note a {
  color: var(--blue);
  font-weight: 700;
  transition: color .2s;
}
.gallery-note a:hover { color: var(--orange); }

/* ─── ÁREA DE ATENDIMENTO ─── */
.bairros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.bairro-group {
  padding: 20px;
  background: var(--white);
  border-top: 3px solid var(--blue-vivo);
  box-shadow: 0 2px 12px rgba(12,30,51,0.07);
}
.bairro-group strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bairro-group span {
  color: var(--gray-text);
  font-family: var(--font-sec);
  font-size: .83rem;
  line-height: 1.7;
}
.atendimento-note {
  text-align: center;
  font-family: var(--font-sec);
  font-size: .9rem;
  color: var(--gray-text);
}
.atendimento-note a { color: var(--blue); font-weight: 700; }
.atendimento-note a:hover { color: var(--orange); }

/* ─── FAQ ─── */
.faq-wrap { max-width: 860px; }
.faq-list { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid #dce3ec;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-content: center;
  border: 2px solid var(--blue-vivo);
  border-radius: 50%;
  color: var(--blue-vivo);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform .25s, background .25s;
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--blue-vivo);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-item[open] summary { color: var(--blue); }
.faq-item > p {
  padding: 0 0 22px 0;
  margin: 0;
  color: var(--gray-text);
  font-family: var(--font-sec);
  font-size: .93rem;
  line-height: 1.7;
}
.faq-item > p strong { color: var(--navy); }

/* ─── SEÇÕES ─── */
.section { padding: 100px 0; }
.section-heading { max-width: 740px; margin-bottom: 52px; }
.section-heading.compact { max-width: 660px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading p {
  color: var(--gray-text);
  font-family: var(--font-sec);
  font-size: .97rem;
}

/* ─── CARDS DE SERVIÇOS ─── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.solution-card {
  position: relative;
  min-height: 300px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid #dce3ec;
  border-top: 3px solid var(--blue-vivo);
  transition: transform .25s ease, box-shadow .25s ease, border-top-color .25s ease;
}
.solution-card > span {
  display: block;
  margin-bottom: 14px;
  color: var(--silver);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.card-icon {
  margin-bottom: 18px;
}
.solution-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.2rem;
}
.solution-card p {
  margin: 0;
  color: var(--gray-text);
  font-family: var(--font-sec);
  font-size: .9rem;
  line-height: 1.6;
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(12, 30, 51, 0.12);
  border-top-color: var(--orange);
}

/* ─── SOBRE / ABOUT ─── */
.about {
  color: var(--white);
  background: var(--navy);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 560px;
  background: var(--navy) url('assets/about.jpg') center top / cover no-repeat;
  overflow: hidden;
}
/* Overlay sutil para garantir legibilidade do badge sobre a foto */
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 30, 51, 0.15) 0%,
    rgba(12, 30, 51, 0.35) 100%
  );
}
.experience-badge {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: 170px;
  min-height: 170px;
  display: grid;
  place-content: center;
  padding: 20px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
}
.experience-badge strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.experience-badge span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sec);
  font-size: .74rem;
  font-weight: 600;
  line-height: 1.4;
}
.about-copy .eyebrow { color: var(--blue-vivo); }
.about-copy h2 { color: var(--white); }
.about-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-sec);
  font-size: .96rem;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.about-values div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.about-values strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-vivo);
  font-size: .88rem;
  font-weight: 700;
}
.about-values span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-sec);
  font-size: .84rem;
  line-height: 1.55;
}

/* ─── DIFERENCIAIS / BENEFITS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dce3ec;
  overflow: hidden;
  border-radius: 4px;
}
.benefit {
  min-height: 270px;
  padding: 32px 26px;
  background: var(--white);
  border-right: 1px solid #dce3ec;
  transition: background .22s, box-shadow .22s;
  position: relative;
}
.benefit:last-child { border-right: 0; }
.benefit:hover { background: #f0f5fa; }
.benefit-icon {
  margin-bottom: 10px;
}
.benefit-num {
  display: block;
  margin-bottom: 40px;
  color: var(--silver);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.benefit h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--navy);
}
.benefit p {
  margin: 0;
  color: var(--gray-text);
  font-family: var(--font-sec);
  font-size: .88rem;
  line-height: 1.6;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 90px 0;
  color: var(--white);
  background: linear-gradient(125deg, var(--navy) 0%, #0a2d52 50%, var(--navy-2) 100%);
  border-top: 3px solid var(--blue-vivo);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 56px;
  align-items: center;
}
.cta-grid .eyebrow { color: var(--blue-vivo); }
.cta-grid h2 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 12px;
}
.cta-grid > div > p {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-sec);
  font-size: .96rem;
  max-width: 520px;
}
.cta-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}
.text-link {
  color: var(--blue-vivo);
  font-weight: 700;
  font-size: .9rem;
  transition: color .2s;
}
.text-link:hover { color: var(--orange); }

/* ─── FOOTER ─── */
footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--font-sec);
  font-size: .88rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer-nav strong,
.footer-contact strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-nav a,
.footer-contact a {
  display: block;
  margin: 6px 0;
  font-family: var(--font-sec);
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color .2s;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--blue-vivo); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  font-family: var(--font-sec);
  font-size: .74rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ─── WHATSAPP FLUTUANTE ─── */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #20b85a;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  font-family: var(--font-main);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

/* ─── REVEAL (animação de entrada) ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── TRÊS PILARES ─── */
.pilares-section {
  padding: 0;
  background: var(--navy);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pilar {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid rgba(29, 161, 242, 0.15);
  transition: background .25s;
}
.pilar:last-child { border-right: 0; }
.pilar:hover { background: rgba(29, 161, 242, 0.06); }
.pilar--destaque {
  background: rgba(245, 130, 32, 0.06);
  border-top: 3px solid var(--orange);
  margin-top: -3px;
}
.pilar--destaque:hover { background: rgba(245, 130, 32, 0.1); }
.pilar-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.pilar h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
}
.pilar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-sec);
  font-size: .92rem;
  line-height: 1.65;
}

/* ─── SEÇÃO CINZA ─── */
.section--gray { background: #f0f4f8; }

/* ─── DEPOIMENTOS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  margin: 0;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid #dce3ec;
  border-top: 3px solid var(--blue-vivo);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .22s, transform .22s;
}
.testimonial:hover {
  box-shadow: 0 12px 40px rgba(12, 30, 51, 0.1);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  margin: 0;
  color: #3d4f61;
  font-family: var(--font-sec);
  font-size: .96rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #e8edf3;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-vivo) 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-main);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-author span {
  display: block;
  font-family: var(--font-sec);
  font-size: .8rem;
  color: var(--gray-text);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   RESPONSIVIDADE
   ═══════════════════════════════════════════ */

/* ─── Tablet: 960px ─── */
@media (max-width: 960px) {
  .menu-toggle { display: block; }
  nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    padding: 20px 24px;
    background: rgba(236, 240, 245, 0.98);
    border-top: 1px solid #d4dae3;
    box-shadow: 0 8px 24px rgba(12,30,51,0.10);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  nav.open { display: flex; }
  nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #eaeef3;
    font-size: .92rem;
    color: var(--navy);
  }
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    border-bottom: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 140px;
    gap: 40px;
  }
  .quote-card { max-width: 520px; }

  .solutions-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid,
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 420px; }
  .experience-badge { right: 0; }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid #dce3ec; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 1; min-height: 260px; }
  .gallery-item { min-height: 200px; }

  .bairros-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pilares: 960px — colapsa para 1 coluna */
  .pilares-grid { grid-template-columns: 1fr; }
  .pilar { border-right: 0; border-bottom: 1px solid rgba(29, 161, 242, 0.15); padding: 36px 28px; }
  .pilar:last-child { border-bottom: 0; }
  .pilar--destaque { border-top: 0; border-left: 3px solid var(--orange); margin-top: 0; }

  /* Depoimentos: 960px — 1 coluna */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

/* ─── Mobile: 640px ─── */
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }

  .brand img { width: 160px; }
  .nav-wrap { min-height: 68px; }
  nav { top: 68px; }

  .hero { min-height: auto; }
  .hero-grid { padding-top: 120px; padding-bottom: 52px; gap: 32px; }
  h1 { font-size: 2.4rem; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 8px; }

  .trust-items {
    grid-template-columns: 1fr 1fr;
    padding: 8px 0;
  }
  .trust-items span {
    min-height: 38px;
    display: grid;
    place-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: .7rem;
  }
  .trust-items span:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
  .trust-items span:nth-last-child(-n+2) { border-bottom: 0; }

  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 36px; }

  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }

  .about-grid { gap: 36px; }
  .about-values { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; border: none; border-radius: 0; }
  .benefit {
    border-right: 0;
    border-bottom: 1px solid #dce3ec;
    border: 1px solid #dce3ec;
    margin-bottom: 12px;
    min-height: auto;
  }
  .benefit:nth-child(2) { border-right: 1px solid #dce3ec; }
  .benefit:nth-child(-n+2) { border-bottom: 1px solid #dce3ec; }

  .cta-grid { grid-template-columns: 1fr; }
  .cta-actions { width: 100%; }
  .cta-actions .button { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  .whatsapp-float { right: 14px; bottom: 14px; padding: 11px 14px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall, .gallery-item { min-height: 220px; grid-row: span 1; }

  .bairros-grid { grid-template-columns: 1fr; }

  /* Pilares mobile */
  .pilar { padding: 32px 20px; }

  /* Depoimentos mobile */
  .testimonials-grid { max-width: 100%; }
  .testimonial { padding: 24px 20px; }
}

/* ─── Mobile pequeno: 400px ─── */
@media (max-width: 400px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .trust-items { grid-template-columns: 1fr; }
  .trust-items span { border-right: 0 !important; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .trust-items span:last-child { border-bottom: 0; }
}

/* ─── Preferência: reduzir movimento ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .nav-cta, .whatsapp-float, .solution-card { transition: none; }
}
