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

:root {
  /* Paleta */
  --bg:         #FAF8F5;
  --beige:      #F3EEE8;
  --neutral:    #EBE5DE;
  --green:      #6F8F72;
  --green-dark: #4E6A55;
  --text:       #2E2A26;
  --text-muted: #6E6862;
  --white:      #FFFFFF;

  /* Tipografia */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --section-py: clamp(64px, 8vw, 120px);
  --container:  1160px;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;

  /* Sombras */
  --shadow-xs: 0 1px 4px rgba(46, 42, 38, 0.06);
  --shadow-sm: 0 4px 16px rgba(46, 42, 38, 0.08);
  --shadow-md: 0 8px 32px rgba(46, 42, 38, 0.10);

  /* Transições */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   CONTAINER
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ============================================================
   REVEAL ANIMATION — aplicado via JS (Intersection Observer)
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Atraso em cascata para filhos */
.reveal-group > *:nth-child(1) { transition-delay: 0ms; }
.reveal-group > *:nth-child(2) { transition-delay: 100ms; }
.reveal-group > *:nth-child(3) { transition-delay: 200ms; }
.reveal-group > *:nth-child(4) { transition-delay: 300ms; }

/* Acessibilidade: sem animações */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   TIPOGRAFIA UTILITÁRIA
============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow::before,
.eyebrow::after {
  content: '—';
  margin-inline: 6px;
  opacity: 0.5;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
}

.section-subtitle {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ============================================================
   BOTÕES
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}

.btn-primary {
  background-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(78, 106, 85, 0.25);
}

.btn-primary:hover {
  background-color: var(--green);
  box-shadow: 0 4px 20px rgba(78, 106, 85, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1.5px solid var(--neutral);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background-color: var(--green-dark);
  color: var(--white);
  font-size: 0.9rem;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(78, 106, 85, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--green);
  box-shadow: 0 6px 28px rgba(78, 106, 85, 0.4);
  transform: translateY(-2px);
}

/* ============================================================
   NAV / HEADER
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

header.scrolled {
  border-color: var(--neutral);
  box-shadow: var(--shadow-xs);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

.nav-logo-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-cta {
  font-size: 0.8rem !important;
  padding: 10px 22px;
  color: var(--white) !important;
}

.nav-links a.nav-cta:hover {
  color: var(--white);
}

/* Hamburguer mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--neutral);
    box-shadow: var(--shadow-sm);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 32px;
    font-size: 0.875rem;
  }

  .nav-cta {
    margin: 8px 32px 0;
    padding: 12px 24px !important;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ============================================================
   HERO
============================================================ */
#hero {
  padding-top: calc(72px + clamp(48px, 8vw, 100px));
  padding-bottom: var(--section-py);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--green);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text);
}

.hero-title em {
  font-style: italic;
  color: var(--green-dark);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  padding-top: 8px;
  border-top: 1px solid var(--neutral);
}

/* Foto hero */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-bg {
  position: absolute;
  width: 88%;
  height: 88%;
  background: var(--beige);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

/* Decoração orgânica SVG */
.hero-deco {
  position: absolute;
  z-index: 0;
}

.hero-deco-tl {
  top: -20px;
  left: -40px;
  opacity: 0.18;
}

.hero-deco-br {
  bottom: 0;
  right: -30px;
  opacity: 0.15;
  transform: rotate(180deg);
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  width: 88%;
  aspect-ratio: 3/4;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-image-frame img,
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder quando não há foto */
.hero-image-placeholder {
  background: linear-gradient(160deg, var(--neutral) 0%, var(--beige) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 32px;
  gap: 8px;
}

.hero-image-placeholder-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-image-placeholder-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    order: -1;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-image-frame {
    width: 100%;
  }
}

/* ============================================================
   FAIXA DE CONFIANÇA
============================================================ */
#trust {
  background: var(--white);
  border-top: 1px solid var(--neutral);
  border-bottom: 1px solid var(--neutral);
  padding-block: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  border-radius: 50%;
  color: var(--green-dark);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-dark);
  stroke-width: 1.5;
  fill: none;
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   DORES E TRANSFORMAÇÃO
============================================================ */
#transformation {
  padding-block: var(--section-py);
}

.transformation-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.transformation-header .section-title {
  margin-top: 12px;
  margin-inline: auto;
  max-width: 540px;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.transform-card {
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
}

.transform-card-pain {
  background: var(--beige);
  border: 1px solid var(--neutral);
}

.transform-card-solution {
  background: var(--white);
  border: 1px solid var(--neutral);
  box-shadow: var(--shadow-sm);
}

.transform-card-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.transform-card-pain .transform-card-label {
  color: var(--text-muted);
}

.transform-card-solution .transform-card-label {
  color: var(--green);
}

.transform-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 24px;
}

.transform-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.transform-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.transform-list-pain li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236E6862' stroke-width='1.5'%3E%3Ccircle cx='8' cy='8' r='6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.transform-list-solution li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%234E6A55' stroke-width='1.5'%3E%3Cpath d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 640px) {
  .transformation-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVIÇOS
============================================================ */
#services {
  padding-block: var(--section-py);
  background: var(--beige);
}

.services-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.services-header .section-title {
  margin-top: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  border: 1px solid var(--neutral);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-dark);
  stroke-width: 1.5;
  fill: none;
}

.service-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  text-transform: uppercase;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--green);
}

.service-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  transition: transform var(--transition);
}

.service-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ============================================================
   SOBRE
============================================================ */
#about {
  padding-block: var(--section-py);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  /* Espaço para o bg deslocado não ser cortado */
  padding: 0 20px 20px 0;
}

/* Camada de fundo deslocada — cria profundidade com contraste de curvas */
.about-image-bg {
  position: absolute;
  inset: 20px 0 0 20px;
  background: var(--beige);
  border-radius: 40px 40px 40px 100px; /* curva grande no canto inferior-esquerdo */
  z-index: 0;
}

/* Moldura principal da foto */
.about-image-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  border-radius: 40px 100px 40px 40px; /* curva grande no canto superior-direito */
  overflow: hidden;
  /* Sombra dupla: profundidade suave + presença */
  box-shadow:
    0 2px 8px rgba(46, 42, 38, 0.05),
    0 16px 48px rgba(46, 42, 38, 0.11);
}

/* Anel interno — detalhe premium sutil */
.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 32px 90px 32px 32px;
  border: 1px solid rgba(111, 143, 114, 0.18);
  pointer-events: none;
  z-index: 2;
}

/* Imagem */
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* preserva rosto */
  display: block;
}

/* Acento decorativo — círculo verde discreto no canto inferior-direito */
.about-image-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  opacity: 0.2;
  z-index: 2;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-content .section-title {
  margin-top: 12px;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--beige);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral);
}

.about-credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.about-credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.about-credential-label {
  font-weight: 500;
  color: var(--text);
  min-width: 60px;
}

.about-credential-value {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    max-width: 380px;
    margin-inline: auto;
  }
}

/* ============================================================
   COMO FUNCIONA
============================================================ */
#how {
  padding-block: var(--section-py);
  background: var(--beige);
}

.how-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.how-header .section-title {
  margin-top: 12px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

/* Linha conectora entre steps */
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 1px;
  background: var(--neutral);
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 clamp(16px, 3vw, 40px);
  position: relative;
  z-index: 1;
}

.how-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--neutral);
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

.how-step-number svg {
  width: 26px;
  height: 26px;
  stroke: var(--green-dark);
  stroke-width: 1.5;
  fill: none;
}

.how-step-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.how-step-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.how-step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-steps::before {
    display: none;
  }
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
#testimonials {
  padding-block: var(--section-py);
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.testimonials-header .section-title {
  margin-top: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--neutral);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 14px;
  height: 14px;
  fill: var(--green);
  opacity: 0.8;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  color: var(--green);
  font-size: 1.8rem;
  line-height: 0.5;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--neutral);
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.testimonial-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* ============================================================
   CTA FINAL
============================================================ */
#cta {
  padding-block: var(--section-py);
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

/* Decoração orgânica sutil no CTA */
.cta-deco {
  position: absolute;
  opacity: 0.06;
}

.cta-deco-left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.cta-deco-right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  max-width: 620px;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  line-height: 1.7;
}

.cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.btn-whatsapp-cta {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 16px 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition: box-shadow var(--transition), transform var(--transition);
}

.btn-whatsapp-cta:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.btn-whatsapp-cta svg {
  width: 18px;
  height: 18px;
  fill: var(--green-dark);
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.65);
  padding-block: 56px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-crn {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   WHATSAPP FLUTUANTE
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: box-shadow var(--transition), transform var(--transition);
}

.whatsapp-float:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transform: scale(1.06) translateY(-2px);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ============================================================
   LOCAIS DE ATENDIMENTO
============================================================ */
#locations {
  padding-block: var(--section-py);
  background: var(--white);
  border-top: 1px solid var(--neutral);
  border-bottom: 1px solid var(--neutral);
}

.locations-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.locations-header .section-title {
  margin-top: 12px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 3.5vw, 36px);
  background: var(--beige);
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral);
  transition: box-shadow var(--transition), transform var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.location-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--neutral);
  flex-shrink: 0;
}

.location-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green-dark);
  stroke-width: 1.5;
  fill: none;
}

.location-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.location-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.location-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(111, 143, 114, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.location-address {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
  line-height: 1.5;
  margin-top: auto;
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* ============================================================
   DIVISORES ORGÂNICOS
============================================================ */
.section-divider {
  width: 40px;
  height: 1px;
  background: var(--green);
  margin-inline: auto;
  opacity: 0.5;
}
