/* ============================================================
   Cris Belo Tricologia — Stylesheet
   Paleta: sage / terracota / navy / cream
   Tipografia: Fraunces (display) + Manrope (body)
   ============================================================ */

:root {
  /* Paleta principal */
  --c-sage: #6E7A4F;
  --c-sage-light: #A8B188;
  --c-sage-dark: #4A5538;
  --c-terracota: #8B4A3A;
  --c-terracota-light: #B87D6D;
  --c-terracota-dark: #5E2F23;
  --c-navy: #1F3A52;
  --c-navy-light: #4A6580;
  --c-navy-dark: #0D2233;
  --c-cream: #FAF7F2;
  --c-cream-dark: #EDE7DC;
  --c-charcoal: #2A2A2A;
  --c-white: #FFFFFF;
  --c-muted: #6B6B6B;

  /* Tipografia */
  --ff-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --ff-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Espaçamento */
  --section-y: 6rem;
  --section-y-sm: 4rem;

  /* Sombras sutis */
  --shadow-sm: 0 2px 8px rgba(31, 58, 82, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 58, 82, 0.10);
  --shadow-lg: 0 20px 60px rgba(31, 58, 82, 0.14);
}

/* ============================================================
   Reset & Base
   ============================================================ */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-charcoal);
  background-color: var(--c-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.01em;
  color: var(--c-navy-dark);
  line-height: 1.15;
}

p {
  color: var(--c-charcoal);
}

a {
  color: var(--c-navy);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--c-terracota);
}

/* Detalhes editoriais — pequenos kickers acima das seções */
.kicker {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-terracota);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--c-terracota);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}

section {
  padding: var(--section-y) 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: var(--section-y-sm) 0; }
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar-cb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1.25rem 0;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar-cb.scrolled {
  padding: 0.75rem 0;
  background: rgba(250, 247, 242, 0.95);
  border-bottom-color: var(--c-cream-dark);
  box-shadow: var(--shadow-sm);
}

.navbar-cb .navbar-brand {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--c-navy-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.navbar-cb .navbar-brand small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-top: 4px;
}

.navbar-cb .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-charcoal);
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-cb .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--c-terracota);
  transition: width 0.25s ease;
}

.navbar-cb .nav-link:hover::after,
.navbar-cb .nav-link.active::after {
  width: 1.5rem;
}

.navbar-cb .nav-link:hover {
  color: var(--c-terracota);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: var(--c-cream);
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(168, 177, 136, 0.18) 0%, transparent 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: var(--c-navy-dark);
}

.hero h1 em {
  font-style: italic;
  color: var(--c-terracota);
  font-weight: 300;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--c-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Foto da Cris no hero */
.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--c-sage-light), var(--c-sage));
  border-radius: 999px 999px 24px 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Detalhe SVG botânico no hero */
.hero-botanic {
  position: absolute;
  z-index: 0;
  opacity: 0.4;
}
.hero-botanic-1 { top: 10%; left: -2%; width: 120px; color: var(--c-sage); }
.hero-botanic-2 { bottom: -5%; right: 30%; width: 100px; color: var(--c-terracota-light); }

/* Selo "anos de experiência" */
.hero-badge {
  position: absolute;
  bottom: 8%;
  left: -8%;
  background: var(--c-white);
  border-radius: 999px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
.hero-badge-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--c-terracota);
  line-height: 1;
}
.hero-badge-txt {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-charcoal);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .hero { padding-top: 7rem; }
  .hero-badge { left: 0; bottom: 4%; }
  .hero-badge-num { font-size: 1.5rem; }
}

/* ============================================================
   Botões
   ============================================================ */
.btn-cb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cb-primary {
  background: var(--c-terracota);
  color: var(--c-white);
}
.btn-cb-primary:hover {
  background: var(--c-terracota-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cb-outline {
  background: transparent;
  color: var(--c-navy-dark);
  border-color: var(--c-navy-dark);
}
.btn-cb-outline:hover {
  background: var(--c-navy-dark);
  color: var(--c-white);
}

.btn-cb-whatsapp {
  background: #25D366;
  color: var(--c-white);
}
.btn-cb-whatsapp:hover {
  background: #1ebe5b;
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Section: Sobre
   ============================================================ */
.sobre {
  background: var(--c-white);
}

.sobre-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--c-cream-dark);
}
.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 16px;
  pointer-events: none;
  margin: 12px;
}

.sobre-signature {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-terracota);
  margin-top: 1.5rem;
}
.sobre-signature small {
  display: block;
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ============================================================
   Section: Categorias (7 círculos)
   ============================================================ */
.categorias {
  background: var(--c-cream);
  padding: 5rem 0;
}

.categoria-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  align-items: start;
}

@media (max-width: 991px) { .categoria-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
@media (max-width: 575px) { .categoria-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.categoria-item {
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.categoria-item:hover {
  transform: translateY(-4px);
  color: inherit;
}

.categoria-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--c-white);
  box-shadow: 0 0 0 1.5px currentColor, var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.categoria-item:hover .categoria-circle {
  box-shadow: 0 0 0 1.5px currentColor, var(--shadow-md);
  transform: rotate(-3deg);
}

.categoria-circle svg {
  width: 36px;
  height: 36px;
  color: var(--c-white);
}

.categoria-color-sage { color: var(--c-sage); background: var(--c-sage); }
.categoria-color-terracota { color: var(--c-terracota); background: var(--c-terracota); }
.categoria-color-navy { color: var(--c-navy); background: var(--c-navy); }

.categoria-label {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: 0.02em;
}

/* ============================================================
   Section: Patologias
   ============================================================ */
.patologias {
  background: var(--c-white);
}

.patologia-card {
  background: var(--c-cream);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.patologia-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--c-terracota);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.patologia-card:hover {
  border-color: var(--c-cream-dark);
  background: var(--c-white);
  box-shadow: var(--shadow-md);
}

.patologia-card:hover::before {
  transform: scaleY(1);
}

.patologia-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--c-sage);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.patologia-icon svg { width: 28px; height: 28px; }

.patologia-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--c-navy-dark);
}

.patologia-card p {
  font-size: 0.95rem;
  color: var(--c-muted);
  margin-bottom: 0;
}

/* ============================================================
   Section: Resultados (galeria placeholder)
   ============================================================ */
.resultados {
  background: var(--c-navy-dark);
  color: var(--c-white);
}

.resultados .kicker { color: var(--c-sage-light); }
.resultados .kicker::before { background: var(--c-sage-light); }
.resultados .section-title { color: var(--c-white); }
.resultados .section-subtitle { color: rgba(255,255,255,0.7); }

.resultado-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.resultado-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--c-sage-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.resultado-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.galeria-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
}

/* ============================================================
   Section: Cursos
   ============================================================ */
.cursos {
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-dark) 100%);
}

.curso-card {
  background: var(--c-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.curso-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(110, 122, 79, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.curso-badge {
  display: inline-block;
  background: var(--c-sage);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.curso-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.curso-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.curso-features li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--c-cream-dark);
  font-size: 0.95rem;
  color: var(--c-charcoal);
}

.curso-features li:last-child { border-bottom: none; }

.curso-features svg {
  width: 18px;
  height: 18px;
  color: var(--c-sage);
  flex-shrink: 0;
}

/* ============================================================
   Section: Recursos
   ============================================================ */
.recursos {
  background: var(--c-white);
}

.recurso-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--c-cream);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  text-decoration: none;
  color: var(--c-charcoal);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.recurso-card:hover {
  background: var(--c-white);
  border-color: var(--c-cream-dark);
  box-shadow: var(--shadow-md);
  color: var(--c-charcoal);
  transform: translateX(4px);
}

.recurso-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--c-navy);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.recurso-icon svg { width: 24px; height: 24px; }

.recurso-card h4 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--c-navy-dark);
}

.recurso-card p {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin: 0;
}

/* ============================================================
   Section: Dicas (blog/instagram)
   ============================================================ */
.dicas {
  background: var(--c-cream);
}

.dica-card {
  background: var(--c-white);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

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

.dica-card-img {
  aspect-ratio: 16/10;
  background: var(--c-sage-light);
  overflow: hidden;
  position: relative;
}
.dica-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dica-card:hover .dica-card-img img { transform: scale(1.06); }

.dica-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dica-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-terracota);
  margin-bottom: 0.75rem;
}

.dica-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.dica-card-body p {
  font-size: 0.9rem;
  color: var(--c-muted);
  flex: 1;
}

.dica-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.dica-card-link svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.dica-card:hover .dica-card-link svg { transform: translateX(4px); }

/* ============================================================
   Section: Curiosidades (mitos x verdades)
   ============================================================ */
.curiosidades {
  background: var(--c-white);
}

.curiosidade-item {
  background: var(--c-cream);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  position: relative;
  border-left: 4px solid var(--c-sage);
}

.curiosidade-item.mito { border-left-color: var(--c-terracota); }
.curiosidade-item.verdade { border-left-color: var(--c-sage); }

.curiosidade-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.curiosidade-tag.mito { background: var(--c-terracota); color: var(--c-white); }
.curiosidade-tag.verdade { background: var(--c-sage); color: var(--c-white); }

.curiosidade-item h5 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--c-navy-dark);
}

.curiosidade-item p {
  font-size: 0.92rem;
  color: var(--c-charcoal);
  margin: 0;
}

/* ============================================================
   Section: FeedBack (depoimentos)
   ============================================================ */
.feedback {
  background: var(--c-cream-dark);
  position: relative;
  overflow: hidden;
}

.feedback-quote {
  font-family: var(--ff-display);
  font-size: 6rem;
  color: var(--c-sage);
  opacity: 0.15;
  line-height: 0.5;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  pointer-events: none;
}

.depoimento-card {
  background: var(--c-white);
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.depoimento-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-navy-dark);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-cream-dark);
}

.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-sage-light);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.depoimento-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-navy-dark);
}
.depoimento-author-info span {
  font-size: 0.78rem;
  color: var(--c-muted);
}

/* ============================================================
   Section: Serviços
   ============================================================ */
.servicos {
  background: var(--c-white);
}

.servico-card {
  border: 1px solid var(--c-cream-dark);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  background: var(--c-white);
}

.servico-card:hover {
  border-color: var(--c-sage);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.servico-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.servico-duracao {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.servico-duracao svg { width: 14px; height: 14px; }

.servico-preco {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--c-terracota);
  line-height: 1;
  margin: 1rem 0;
}
.servico-preco small {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--c-muted);
  font-weight: 500;
}

.servico-desc {
  font-size: 0.95rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.servico-card .btn-cb {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   Section: Contato
   ============================================================ */
.contato {
  background: linear-gradient(135deg, var(--c-navy-dark) 0%, var(--c-navy) 100%);
  color: var(--c-white);
}

.contato .kicker { color: var(--c-sage-light); }
.contato .kicker::before { background: var(--c-sage-light); }
.contato .section-title { color: var(--c-white); }
.contato p { color: rgba(255,255,255,0.8); }

.contato-info {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.contato-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contato-info li:last-child { border-bottom: none; }

.contato-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-sage-light);
}
.contato-info-icon svg { width: 18px; height: 18px; }

.contato-info-text strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-sage-light);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contato-info-text span,
.contato-info-text a {
  font-size: 1rem;
  color: var(--c-white);
}
.contato-info-text a:hover { color: var(--c-sage-light); }

.contato-redes {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contato-rede {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: all 0.25s ease;
}

.contato-rede:hover {
  background: var(--c-sage);
  color: var(--c-white);
  transform: translateY(-3px);
}
.contato-rede svg { width: 20px; height: 20px; }

/* ============================================================
   Footer
   ============================================================ */
.footer-cb {
  background: var(--c-navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-cb a {
  color: var(--c-sage-light);
}
.footer-cb a:hover { color: var(--c-white); }

/* ============================================================
   WhatsApp flutuante
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1040;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  animation: wppPulse 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--c-white);
}
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================================
   Animações (AOS-compatible fallback)
   ============================================================ */
[data-aos] { opacity: 0; transition: all 0.8s cubic-bezier(.4, 0, .2, 1); }
[data-aos="fade-up"] { transform: translateY(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos].aos-animate { opacity: 1; transform: none; }
