/* ============================================================
   SOUZA LEAL ADVOGADOS — LP SALÁRIO-MATERNIDADE
   Design System Premium | Mobile-First
   ============================================================ */

/* ──────────────────────────────────────────
   TOKENS / VARIÁVEIS
────────────────────────────────────────── */
:root {
  --rose:        #d43582;
  --rose-light:  #fce8f3;
  --rose-mid:    #f5a8d4;
  --rose-dark:   #b02a6a;
  --gold:        #CFA363;
  --gold-light:  #fdf4e7;
  --gold-mid:    #e8c88a;
  --white:       #FFFFFF;
  --off-white:   #F8F8F8;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #4B5563;
  --gray-800:    #1F2937;
  --gray-900:    #111827;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-rose: 0 8px 24px rgba(212,53,130,.25);

  --transition:  0.22s ease;

  --space-xs:    8px;
  --space-sm:    16px;
  --space-md:    24px;
  --space-lg:    40px;
  --space-xl:    64px;
  --space-2xl:   96px;
}

/* ──────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ──────────────────────────────────────────
   SCROLL PROGRESS BAR
────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--rose) 0%, var(--gold) 100%);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ──────────────────────────────────────────
   LAYOUT
────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-md); }
}

/* ──────────────────────────────────────────
   SEÇÕES GERAIS
────────────────────────────────────────── */
.section {
  padding: 40px 0;
}

.section--light {
  background: var(--off-white);
}

@media (min-width: 768px) {
  .section { padding: 56px 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Destaques de cor */
.highlight--rose { color: var(--rose); }
.highlight--gold { color: var(--gold); }

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo como imagem real */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img--footer {
  height: 56px;
  width: auto;
  /* Logo tem fundo branco, adiciona filtro leve para destacar no fundo escuro */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

@media (max-width: 480px) {
  .logo-img { height: 38px; }
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrap--footer {
  justify-content: center;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.1;
  white-space: nowrap;
}

.logo-name em {
  font-style: italic;
  color: var(--rose);
}

.logo-tagline {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: .03em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .logo-tagline { display: none; }
  .logo-icon { width: 30px; height: 30px; }
  .logo-name { font-size: 0.95rem; }
}

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect */
.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn:hover::after { left: 125%; }

/* Tamanhos */
.btn--sm {
  font-size: 13px;
  padding: 9px 18px;
  gap: 7px;
}

.btn--lg {
  font-size: 15px;
  padding: 17px 36px;
  gap: 11px;
  letter-spacing: .01em;
}

@media (max-width: 480px) {
  .btn--lg {
    width: 100%;
    max-width: 360px;
    padding: 16px 24px;
    font-size: 14.5px;
  }
}

/* Variantes */
.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-rose);
}

.btn--primary:hover {
  transform: scale(1.04);
  filter: brightness(1.06);
  box-shadow: 0 10px 30px rgba(212,53,130,.35);
}

.btn--primary:active { transform: scale(0.97); }

.btn--white {
  background: var(--white);
  color: var(--rose);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.btn--white:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.btn--white:active { transform: scale(0.97); }

/* Bounce animation */
@keyframes bounceCta {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn--bounce {
  animation: bounceCta 2s ease-in-out infinite;
}

.btn--bounce:hover,
.btn--bounce:focus {
  animation: none;
  transform: scale(1.05);
  filter: brightness(1.06);
}

.btn--bounce:active {
  animation: none;
  transform: scale(0.97);
}

/* Micro-texto abaixo do botão */
.btn-micro {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
  line-height: 1.4;
  text-align: center;
}

.btn-micro--white {
  color: rgba(255,255,255,0.7);
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  background: linear-gradient(175deg, #fff 0%, #fdf2f8 45%, #fce7f3 100%);
  padding: 40px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Faixa diagonal decorativa no canto superior direito */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(212,53,130,.07) 0%, rgba(207,163,99,.06) 60%, transparent 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  transform: rotate(20deg);
  pointer-events: none;
  z-index: 0;
  animation: heroDecorFloat 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(207,163,99,.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@keyframes heroDecorFloat {
  0%,100% { transform: rotate(20deg) scale(1); }
  50%     { transform: rotate(24deg) scale(1.06); }
}

.hero__inner {
  position: relative;
  z-index: 1;
}

/* Seção de diferenciais — fundo com pattern de pontos sutis */
#diferenciais {
  background-image: radial-gradient(circle, rgba(212,53,130,.07) 1px, transparent 1px);
  background-size: 22px 22px;
  background-color: var(--white);
}

/* Foto da equipe no hero — borda assimétrica orgânica */
.hero__team-photo {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 60% 40% 40% 60% / 55% 55% 45% 45%;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(212,53,130,.18), 0 4px 12px rgba(0,0,0,.08);
  transition: border-radius 0.6s ease;
}

.hero__team-photo:hover {
  border-radius: 40% 60% 60% 40% / 45% 45% 55% 55%;
}

.hero__team-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

@media (max-width: 480px) {
  .hero__team-photo {
    max-width: 100%;
    border-radius: 50% 40% 40% 50% / 50% 50% 50% 50%;
  }
  .hero__team-img { border-radius: inherit; }
}

/* Bloco de valor dinâmico da hero — redesenhado */
.hero__value-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(150deg, #fff 0%, var(--rose-light) 100%);
  border: 1.5px solid rgba(212,53,130,.16);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(212,53,130,.10), 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
  position: relative;
}

/* Faixa de label no topo */
.hero__value-label {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(212,53,130,.07);
  padding: 10px 16px 8px;
  border-bottom: 1px solid rgba(212,53,130,.10);
}

/* Bloco do número */
.hero__value-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
  justify-content: center;
  padding: 18px 32px 14px;
}

.hero__value-currency {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  vertical-align: top;
  padding-top: 0.25em;
}

.hero__value-number {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 11vw, 5.4rem);
  font-weight: 800;
  color: var(--rose);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

/* Divisor interno */
.hero__value-divider {
  width: calc(100% - 40px);
  height: 1px;
  background: rgba(212,53,130,.12);
  margin: 0 auto;
}

/* Badges de trust abaixo do número */
.hero__value-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  padding: 12px 20px 16px;
  width: 100%;
}

.hero__value-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
  background: rgba(212,53,130,.07);
  border: 1px solid rgba(212,53,130,.15);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .hero__value-wrap { max-width: 100%; }
  .hero__value-amount { padding: 14px 20px 12px; }
  .hero__value-number { font-size: clamp(2.8rem, 13vw, 3.8rem); }
  .hero__value-currency { font-size: clamp(1.3rem, 5.5vw, 1.6rem); }
  .hero__value-badges { gap: 5px 8px; padding: 10px 14px 14px; }
  .hero__value-badge { font-size: 0.73rem; }
}

@media (min-width: 768px) {
  .hero { padding: 52px 0 60px; }
}

.hero__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 6px 16px;
}

.badge--gold {
  background: var(--gold-light);
  color: #8a6a38;
  border: 1px solid rgba(207,163,99,.25);
}

/* Título Hero */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.18;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }
}

/* Subtexto Hero */
.hero__sub {
  font-size: clamp(0.97rem, 2.5vw, 1.1rem);
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* CTA wrap */
.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* Stats do Hero — SEM números inventados, credenciais qualitativas */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 580px;
  margin: 8px auto 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 24px;
  flex: 1;
  min-width: 120px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.stat-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--gray-200);
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .hero__stats {
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .stat-item {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 6px 0;
  }

  .stat-label {
    text-align: left;
  }
}

/* ──────────────────────────────────────────
   CARDS — SEÇÃO DORES
────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 540px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid rgba(212,53,130,.10);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: #b02268;
  border-color: rgba(212,53,130,.2);
  background: #fdf8fb;
}

/* Header do card: ícone + título lado a lado */
.card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.3;
}

.card__text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.cards-footer-text {
  text-align: center;
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   DEPOIMENTOS
────────────────────────────────────────── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  margin-top: var(--space-sm);
  box-shadow: var(--shadow-sm);
}

.google-badge__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.google-badge__stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}

.google-badge__label {
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 500;
}

/* Carrossel horizontal com scroll-snap no mobile */
.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonials-grid .testimonial-card {
  min-width: 280px;
  flex: 0 0 280px;
  scroll-snap-align: start;
}

@media (min-width: 600px) {
  .testimonials-grid .testimonial-card {
    min-width: 300px;
    flex: 0 0 300px;
  }
}

@media (min-width: 960px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .testimonials-grid .testimonial-card {
    min-width: unset;
    flex: unset;
  }
}

/* Indicador de scroll no mobile */
.testimonials-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

@media (min-width: 960px) {
  .testimonials-scroll-hint { display: none; }
}

.testimonials-scroll-hint svg {
  animation: swipeHint 1.5s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card--featured {
  background: var(--gold-light);
  border-color: rgba(207,163,99,.3);
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .testimonial-card--featured {
    grid-column: span 1;
  }
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--rose);
  line-height: 0.7;
  opacity: .25;
  position: absolute;
  top: 14px;
  left: 18px;
}

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--gray-700, #374151);
  line-height: 1.7;
  padding-top: 18px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 60%, #b8964a 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(212,53,130,.28);
  border: 2px solid rgba(255,255,255,.7);
}

.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
}

.author-detail {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: -4px;
}

/* ──────────────────────────────────────────
   TABELA CONTRASTE
────────────────────────────────────────── */
.compare-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .compare-table { grid-template-columns: 1fr 1fr; }
}

.compare-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-col__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 24px;
}

.compare-col--no .compare-col__header {
  background: var(--gray-100);
  color: var(--gray-600);
}

.compare-col--yes .compare-col__header {
  background: linear-gradient(135deg, var(--rose) 0%, #c0366e 60%, #b8964a 100%);
  color: var(--white);
}

.compare-col__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.compare-list {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-col--no .compare-list {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.compare-col--yes .compare-list {
  background: var(--rose-light);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.compare-col--no .compare-list li span {
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-col--yes .compare-list li span {
  color: var(--rose);
  font-weight: 700;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   FEATURES / POR QUE CONFIAR
────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 540px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Header do card: ícone + título lado a lado */
.feature-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,53,130,.2);
  background: #fdf8fb;
}

.feature-card--highlight {
  background: var(--gold-light);
  border-color: rgba(207,163,99,.35);
}

.feature-card--highlight:hover {
  border-color: var(--gold-mid);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-card__icon--rose {
  background: var(--rose-light);
  color: var(--rose);
}

.feature-card__icon--gold {
  background: var(--gold-light);
  color: #8a6a38;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  flex: 1;
}

.feature-card__text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  padding-left: 62px; /* alinha com o texto do título (48px icon + 14px gap) */
}

@media (max-width: 480px) {
  .feature-card__text { padding-left: 0; }
  .feature-card__header { gap: 12px; }
}

/* Motion nos ícones dos feature-cards */
@keyframes iconBounce {
  0%,100% { transform: translateY(0) scale(1); }
  40%      { transform: translateY(-5px) scale(1.12); }
  70%      { transform: translateY(2px) scale(.96); }
}

@keyframes iconSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes iconPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,53,130,.25); }
  50%     { box-shadow: 0 0 0 8px rgba(212,53,130,.0); }
}

.icon-animated {
  transition: transform .3s ease, box-shadow .3s ease;
}

.feature-card:hover .icon-animated {
  animation: iconBounce .55s ease forwards;
}

.feature-card--highlight:hover .icon-animated {
  animation: iconPulse .7s ease infinite;
}

/* ──────────────────────────────────────────
   STEPS — COMO FUNCIONA
────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 480px) {
  .steps { position: relative; }
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212,53,130,.3);
}

@media (max-width: 480px) {
  .step__number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

.step__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
  flex: 1;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.35;
}

.step__text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ──────────────────────────────────────────
   URGÊNCIA / CTA FINAL
────────────────────────────────────────── */
.section--urgency {
  background: linear-gradient(145deg, #c01f6e 0%, #a0154e 100%);
  padding: 44px 0 52px;
}

@media (min-width: 768px) {
  .section--urgency { padding: 56px 0 64px; }
}

/* Card que envolve TODO o conteúdo (título incluído) */
.urgency-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 24px;
  padding: 40px 44px;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.15);
  text-align: center;
}

@media (max-width: 480px) {
  .urgency-card { padding: 28px 22px; gap: 14px; border-radius: 18px; }
}

/* Ícone decorativo dentro do card */
.urgency-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(207,163,99,.18);
  border: 1.5px solid rgba(207,163,99,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.urgency-card__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.18);
  border-radius: 1px;
}

.urgency__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

@media (max-width: 480px) {
  .urgency__title {
    font-size: clamp(1.15rem, 5.5vw, 1.4rem);
    line-height: 1.2;
  }
}

.urgency__text {
  font-size: clamp(0.93rem, 2.5vw, 1rem);
  color: rgba(255,255,255,.90);
  line-height: 1.7;
  max-width: 520px;
  text-align: center;
}

.urgency__text--bold {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  text-align: center;
}

.btn-micro--rose {
  color: rgba(255,255,255,.65);
}

/* Garantias — box centralizada */
.guarantees-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 18px 28px;
  width: 100%;
  max-width: 380px;
}

.guarantees {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.92);
  width: 100%;
  max-width: 220px;
  justify-content: flex-start;
}

/* ──────────────────────────────────────────
   FOOTER — layout claro
────────────────────────────────────────── */
.footer {
  background: #f8f5f0;
  padding: 56px 0 0;
  border-top: 2px solid rgba(207,163,99,.35);
}

/* Grid 2 colunas: logo | contato */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  align-items: center;
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer__col { align-items: center; }
  .footer__contact-list li { justify-content: center; }
  .footer__socials { justify-content: center; }
}

/* Coluna genérica */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Logo no footer — fundo claro, borda dourada sutil */
.footer__logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer__logo-img {
  width: 180px;
  height: auto;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: 0 2px 10px rgba(160,120,48,.12);
  border: 1px solid rgba(207,163,99,.25);
}

/* Tagline abaixo da logo */
.footer__tagline {
  font-size: 12.5px;
  color: #7a6a5a;
  line-height: 1.6;
}

/* Título de coluna */
.footer__col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a07830;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(160,120,48,.25);
}

/* Lista de nav */
.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-link {
  font-size: 13px;
  color: #5a4e42;
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer__nav-link:hover {
  color: var(--rose);
  padding-left: 4px;
}

/* Lista de contato */
.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #5a4e42;
}

.footer__contact-list li svg { flex-shrink: 0; }

.footer__contact-link {
  text-decoration: none;
  transition: color var(--transition);
}

.footer__contact-link--gold {
  color: #a07830;
}

.footer__contact-link--gold:hover {
  color: #7a5c20;
  text-decoration: underline;
}

/* Ícones sociais circulares */
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer__social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.12);
  color: #6b5c4e;
  background: #fff;
  text-decoration: none;
  transition: all var(--transition);
}

.footer__social-icon:hover {
  background: #f0e8e0;
  color: var(--rose);
  border-color: rgba(212,53,130,.3);
  transform: translateY(-2px);
}

.footer__social-icon--wa:hover {
  background: rgba(37,211,102,.10);
  border-color: rgba(37,211,102,.4);
  color: #1a9e4a;
}

/* Faixa inferior: copyright */
.footer__bottom {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,.07);
}

.footer__bottom p {
  font-size: 11px;
  color: #9a8a7a;
  line-height: 1.5;
  max-width: 620px;
}

/* Compat: manter .footer__sep para separadores inline */
.footer__sep {
  color: rgba(0,0,0,.2);
  font-size: 11px;
  user-select: none;
  padding: 0 2px;
}

/* Manter .footer__legal como alias de .footer__bottom */
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10.5px;
  color: #9a8a7a;
  max-width: 620px;
  line-height: 1.45;
  text-align: center;
  width: 100%;
}

/* ──────────────────────────────────────────
   BOTÃO FLUTUANTE WHATSAPP
────────────────────────────────────────── */
@keyframes pulseFloat {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  60%       { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  animation: pulseFloat 2.8s ease-out infinite;
  transition: transform var(--transition), background var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #20b85b;
  animation: none;
}

.whatsapp-float:active { transform: scale(0.95); }

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--gray-900);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--gray-900);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ──────────────────────────────────────────
   ANIMAÇÕES DE SCROLL
────────────────────────────────────────── */

/* fade-up (padrão) */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade-left */
[data-animate="fade-left"] {
  transform: translateX(-32px);
}
[data-animate="fade-left"].is-visible {
  transform: translateX(0);
}

/* fade-right */
[data-animate="fade-right"] {
  transform: translateX(32px);
}
[data-animate="fade-right"].is-visible {
  transform: translateX(0);
}

/* zoom-in */
[data-animate="zoom-in"] {
  transform: scale(0.88);
}
[data-animate="zoom-in"].is-visible {
  transform: scale(1);
}

/* —— Motion contínuo automático —— */

/* Pulsação suave no botão float WA */
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 4px 20px rgba(37,211,102,.3); }
  50%     { box-shadow: 0 0 0 10px rgba(37,211,102,.0), 0 4px 20px rgba(37,211,102,.3); }
}

/* Flutuão suave da imagem hero */
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Brilho dourado no box de valor */
@keyframes shimmerGold {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Pisca leve no badge de urgência */
@keyframes badgeFade {
  0%,100% { opacity: 1; }
  50%     { opacity: .7; }
}

/* Entrada da logo na navbar */
@keyframes logoSlideIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.navbar__logo {
  animation: logoSlideIn 0.6s cubic-bezier(.22,1,.36,1) 0.1s both;
}

/* Navbar com blur ao rolar */
.navbar--scrolled {
  background: rgba(255,255,255,.82) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

/* Float aplicado ao wrapper mas sem conflitar com border-radius */
.hero__team-photo {
  animation: floatImg 6s ease-in-out infinite;
  /* border-radius e hover ficam no próprio elemento — OK pois animation não altera border-radius */
}

.whatsapp-float {
  animation: waPulse 2.2s ease-in-out infinite;
}

.badge--gold {
  animation: badgeFade 3s ease-in-out infinite;
}

/* Shimmer no valor hero */
.hero__value-number {
  background: linear-gradient(90deg, var(--rose) 0%, #ff6bb5 40%, var(--rose) 60%, var(--rose-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 3s linear infinite;
}

/* Shimmer periódico nos botões CTA principais */
@keyframes btnShimmer {
  0%   { background-position: -200% center; }
  60%  { background-position: 200% center; }
  100% { background-position: 200% center; }
}

.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  background-size: 200% 100%;
  background-position: -200% center;
  animation: btnShimmer 4s ease-in-out infinite;
  border-radius: inherit;
  pointer-events: none;
}

/* Delays inline via JS (usando CSS custom property) */
[data-delay="60"]  { transition-delay: 60ms; }
[data-delay="80"]  { transition-delay: 80ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="120"] { transition-delay: 120ms; }
[data-delay="160"] { transition-delay: 160ms; }
[data-delay="180"] { transition-delay: 180ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="240"] { transition-delay: 240ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="320"] { transition-delay: 320ms; }
[data-delay="400"] { transition-delay: 400ms; }

/* ──────────────────────────────────────────
   ACESSIBILIDADE
────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ──────────────────────────────────────────
   WAVE DIVIDERS ENTRE SEÇÕES
────────────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 52px;
}

.wave-divider--flip {
  transform: scaleX(-1);
}

/* ──────────────────────────────────────────
   LINHA DOURADA DECORATIVA (hero H1)
────────────────────────────────────────── */
.hero__gold-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, #e8c068 70%, transparent);
  border-radius: 3px;
  margin: 4px auto 8px;
  animation: goldLinePulse 3s ease-in-out infinite;
}

@keyframes goldLinePulse {
  0%, 100% { opacity: 1; width: 64px; }
  50%       { opacity: .65; width: 48px; }
}

/* ──────────────────────────────────────────
   URGENCY — badge contador de dias
────────────────────────────────────────── */
.urgency-days-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207,163,99,.15);
  border: 1px solid rgba(207,163,99,.35);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.urgency-days-badge strong {
  color: #fde68a;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin: 0 2px;
}

/* ──────────────────────────────────────────
   FOOTER — item de localização destacado
────────────────────────────────────────── */
.footer__location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  margin-top: 2px;
}

.footer__location-badge .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
}

.footer__location-badge .badge-pill--online {
  background: rgba(59,130,246,.18);
  border: 1px solid rgba(59,130,246,.3);
  color: #93c5fd;
}

.footer__location-badge .badge-pill--presencial {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #86efac;
}

/* "Bahia —" mesma cor dos demais itens do contact-list */
.footer__location-text {
  color: #5a4e42;
  font-weight: 500;
}

/* Elemento decorativo Bahia no footer (col logo) */
.footer__col--logo {
  position: relative;
}

.footer__col--logo::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 160px;
  height: 64px;
  margin-top: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cellipse cx='100' cy='40' rx='90' ry='30' fill='none' stroke='%23CFA363' stroke-width='1.2' stroke-dasharray='4 3' opacity='0.35'/%3E%3Cpath d='M30 40 Q60 20 100 35 Q140 50 170 38' fill='none' stroke='%23d43582' stroke-width='1' opacity='0.25' stroke-dasharray='3 3'/%3E%3Ccircle cx='100' cy='40' r='4' fill='%23CFA363' opacity='0.5'/%3E%3Ccircle cx='60' cy='30' r='2.5' fill='%23d43582' opacity='0.4'/%3E%3Ccircle cx='145' cy='45' r='2.5' fill='%23d43582' opacity='0.4'/%3E%3Ctext x='100' y='68' text-anchor='middle' font-family='Georgia,serif' font-size='9' fill='%23a07830' opacity='0.6' letter-spacing='2'%3EBAHIA%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.8;
}

/* ──────────────────────────────────────────
   UTILITÁRIOS
────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
