/*
Theme Name: Rosana Rossetto
Theme URI: https://rosanarossetto.com
Author: Rosana Rossetto
Description: Tema personalizado para nutricionista especializada em saúde da mulher 40+
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: rosana-rossetto
*/

/* ============================================
   VARIÁVEIS E RESET
============================================ */
:root {
  --bege: #F5EFE0;
  --bege-escuro: #EDE3CE;
  --dourado: #C8A96E;
  --dourado-escuro: #A8864A;
  --verde-salvia: #7D9B76;
  --verde-escuro: #2D6A4F;
  --branco: #FFFFFF;
  --texto: #2C2C2C;
  --texto-claro: #6B6B6B;
  --fonte-titulo: 'Playfair Display', Georgia, serif;
  --fonte-corpo: 'Inter', 'Helvetica Neue', sans-serif;
  --transicao: all 0.3s ease;
  --sombra: 0 4px 24px rgba(0,0,0,0.08);
  --raio: 12px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: var(--fonte-corpo);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transicao); }
ul { list-style: none; }

/* ============================================
   TIPOGRAFIA
============================================ */
h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  line-height: 1.2;
  color: var(--verde-escuro);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 500; }

p { font-size: 1.05rem; color: var(--texto-claro); line-height: 1.8; }

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--fonte-corpo);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1rem;
}

.section-titulo {
  margin-bottom: 1.5rem;
}

.section-subtitulo {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.texto-centro { text-align: center; }
.texto-centro .section-subtitulo { margin-left: auto; margin-right: auto; }

/* ============================================
   BOTÕES
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transicao);
  border: none;
}

.btn-primario {
  background: var(--dourado);
  color: var(--branco);
}

.btn-primario:hover {
  background: var(--dourado-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
}

.btn-secundario {
  background: transparent;
  color: var(--verde-escuro);
  border: 2px solid var(--verde-escuro);
}

.btn-secundario:hover {
  background: var(--verde-escuro);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-branco {
  background: var(--branco);
  color: var(--verde-escuro);
}

.btn-branco:hover {
  background: var(--bege);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVEGAÇÃO
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  transition: var(--transicao);
}

.site-header.scrolled {
  box-shadow: var(--sombra);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: var(--fonte-titulo);
  font-size: 1.4rem;
  color: var(--verde-escuro);
  font-weight: 700;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dourado);
  transition: var(--transicao);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--verde-escuro);
  transition: var(--transicao);
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bege) 0%, var(--bege-escuro) 50%, #E8DFC8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(125, 155, 118, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '✦';
  font-size: 0.6rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--verde-salvia);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-acoes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-numeros {
  display: flex;
  gap: 2rem;
}

.numero-item strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  color: var(--verde-escuro);
}

.numero-item span {
  font-size: 0.85rem;
  color: var(--texto-claro);
}

.hero-imagem {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-foto-wrapper {
  position: relative;
  width: 420px;
  height: 520px;
}

.hero-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  border: 6px solid var(--branco);
  box-shadow: var(--sombra);
}

.hero-foto-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--verde-salvia), var(--verde-escuro));
  border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  border: 6px solid var(--branco);
  box-shadow: var(--sombra);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  text-align: center;
  padding: 2rem;
}

.hero-tag-flutuante {
  position: absolute;
  background: var(--branco);
  border-radius: var(--raio);
  padding: 12px 20px;
  box-shadow: var(--sombra);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texto);
}

.hero-tag-flutuante.tag-1 {
  top: 15%;
  left: -30px;
}

.hero-tag-flutuante.tag-2 {
  bottom: 20%;
  right: -20px;
}

.hero-tag-flutuante .tag-emoji {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 2px;
}

/* ============================================
   FAIXA ONLINE
============================================ */
.faixa-online {
  background: var(--bege-escuro);
  padding: 20px 0;
  border-top: 2px solid var(--dourado);
  border-bottom: 2px solid var(--dourado);
}

.faixa-online-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.faixa-online-icone {
  font-size: 2rem;
  flex-shrink: 0;
}

.faixa-online-inner p {
  flex: 1;
  color: var(--texto);
  font-size: 0.95rem;
  min-width: 200px;
}

.faixa-online-inner p strong {
  color: var(--verde-escuro);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .faixa-online-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   FAIXA APRESENTAÇÃO
============================================ */
.faixa-apresentacao {
  background: var(--verde-escuro);
  padding: 20px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.faixa-track {
  display: flex;
  gap: 3rem;
  animation: slide 20s linear infinite;
  white-space: nowrap;
}

.faixa-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}

.faixa-item::before {
  content: '✦';
  color: var(--dourado);
  font-size: 0.7rem;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SOBRE
============================================ */
.sobre {
  background: var(--branco);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-imagem {
  position: relative;
}

.sobre-foto {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 40% 60% 40% 60% / 40% 40% 60% 60%;
  box-shadow: var(--sombra);
}

.sobre-foto-placeholder {
  width: 100%;
  height: 550px;
  background: linear-gradient(135deg, var(--bege), var(--bege-escuro));
  border-radius: 40% 60% 40% 60% / 40% 40% 60% 60%;
  box-shadow: var(--sombra);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-claro);
  font-size: 0.9rem;
}

.sobre-detalhe {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--dourado);
  color: var(--branco);
  border-radius: var(--raio);
  padding: 20px;
  text-align: center;
  box-shadow: var(--sombra);
}

.sobre-detalhe strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 2rem;
}

.sobre-detalhe span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.sobre-especialidades {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.tag-especialidade {
  background: var(--bege);
  border: 1px solid var(--bege-escuro);
  color: var(--verde-escuro);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.sobre-diferenciais {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.diferencial-icone {
  width: 36px;
  height: 36px;
  background: var(--bege);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.diferencial-texto strong {
  display: block;
  font-size: 0.9rem;
  color: var(--verde-escuro);
  margin-bottom: 2px;
}

.diferencial-texto span {
  font-size: 0.82rem;
  color: var(--texto-claro);
}

/* ============================================
   PARA QUEM É
============================================ */
.para-quem {
  background: var(--bege);
}

.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.para-quem-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--sombra);
  transition: var(--transicao);
  border-bottom: 4px solid transparent;
}

.para-quem-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--dourado);
}

.card-icone {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bege), var(--bege-escuro));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.para-quem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.para-quem-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   SERVIÇOS
============================================ */
.servicos {
  background: var(--branco);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.servico-card {
  border: 1px solid var(--bege-escuro);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--transicao);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde-salvia), var(--dourado));
  transform: scaleX(0);
  transition: var(--transicao);
}

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

.servico-card:hover::before { transform: scaleX(1); }

.servico-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  margin: -2.5rem -2rem 1.5rem -2rem;
  width: calc(100% + 4rem);
}

.servico-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  transition: transform 0.4s ease;
}

.servico-card:hover .servico-img {
  transform: scale(1.05);
}

.servico-corpo { flex: 1; }

.servico-numero {
  font-family: var(--fonte-titulo);
  font-size: 3rem;
  color: var(--bege-escuro);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.servico-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--verde-escuro);
}

.servico-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.servico-link {
  color: var(--dourado);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.servico-link:hover { gap: 1rem; }

/* ============================================
   DEPOIMENTOS
============================================ */
.depoimentos {
  background: var(--bege);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.depoimento-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--sombra);
  position: relative;
}

.depoimento-card::before {
  content: '"';
  font-family: var(--fonte-titulo);
  font-size: 5rem;
  color: var(--bege-escuro);
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
}

.estrelas {
  color: var(--dourado);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.depoimento-texto {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--texto);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.depoimento-autora {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--bege);
  padding-top: 1rem;
}

.autora-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bege-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.autora-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--verde-escuro);
}

.autora-info span {
  font-size: 0.8rem;
  color: var(--texto-claro);
}

/* ============================================
   CTA CENTRAL
============================================ */
.cta-central {
  background: linear-gradient(135deg, var(--verde-escuro) 0%, #1a4a36 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-central::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-central h2 {
  color: var(--branco);
  margin-bottom: 1.5rem;
}

.cta-central p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-central .section-tag {
  color: var(--dourado);
}

.cta-acoes {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--branco);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.redes-sociais {
  display: flex;
  gap: 0.75rem;
}

.rede-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transicao);
}

.rede-social:hover {
  background: var(--dourado);
  border-color: var(--dourado);
  color: var(--branco);
}

.footer-col h4 {
  color: var(--branco);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--fonte-corpo);
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-col a:hover { color: var(--dourado); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--dourado); }

/* ============================================
   RESPONSIVO
============================================ */
@media (max-width: 1024px) {
  .hero-inner,
  .sobre-inner { grid-template-columns: 1fr; gap: 2rem; }

  .hero-imagem { order: -1; }
  .hero-foto-wrapper { width: 260px; height: 320px; margin: 0 auto; }
  .hero-tag-flutuante { display: none; }

  .para-quem-grid,
  .servicos-grid,
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .hero-conteudo { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-acoes { justify-content: center; }
  .hero-numeros { justify-content: center; }
  .hero-badge { display: inline-block; }

  .logo-sub { display: none; }
}

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

  .container { padding: 0 1.2rem; width: 100%; }

  .hero { padding-top: 85px; padding-bottom: 40px; min-height: auto; overflow: hidden; }

  .hero-inner { gap: 1.5rem; }

  .hero-desc { max-width: 100%; width: 100%; }

  .hero-foto-wrapper { width: 200px; height: 240px; }

  .logo-sub { display: none !important; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--branco);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid var(--bege-escuro);
    box-shadow: var(--sombra);
    z-index: 999;
  }

  .nav-menu.aberto { display: flex; }
  .menu-toggle { display: flex; }

  .hero-tag-flutuante { display: none; }

  .para-quem-grid,
  .servicos-grid,
  .depoimentos-grid { grid-template-columns: 1fr; }

  .sobre-diferenciais { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

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

  .hero-numeros { gap: 1.5rem; flex-wrap: wrap; }

  .cta-acoes { flex-direction: column; align-items: center; }

  .header-inner { padding: 0.8rem 1.2rem; }
  .logo img { height: 48px; }

  .servico-img-wrap { height: 240px; }

  .hero-numeros { justify-content: center; }

  .sobre-detalhe { right: 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .logo-sub { display: none !important; }

  .hero { padding-top: 85px; overflow: hidden; }
  .hero-foto-wrapper { width: 200px; height: 240px; }
  .hero-desc { max-width: 100%; }

  .hero-acoes { flex-direction: column; align-items: center; }
  .hero-acoes .btn { width: 100%; justify-content: center; }

  .hero-numeros { flex-direction: column; gap: 1rem; align-items: center; }

  .footer-inner { grid-template-columns: 1fr; }

  .faixa-online-inner { text-align: center; flex-direction: column; }

  .nav-cta { display: none; }
}

/* ============================================
   MANIFESTO
============================================ */
.manifesto {
  background: #FAF3E0;
  padding: 80px 0;
}

.manifesto-bloco {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-linha {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--verde-escuro);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 400;
}

.manifesto-destaque {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--dourado-escuro);
  font-weight: 700;
  margin: 1.5rem 0;
}

.manifesto-fechamento {
  font-size: 1.05rem;
  color: var(--texto-claro);
  margin-top: 1.5rem;
  line-height: 1.9;
}

/* ============================================
   INSTAGRAM LINK
============================================ */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dourado-escuro);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transicao);
}

.instagram-link:hover { color: var(--verde-escuro); }

.nav-instagram {
  display: flex;
  align-items: center;
  transition: var(--transicao);
  opacity: 0.8;
}

.nav-instagram:hover { opacity: 1; }

/* ============================================
   GPS HORMONAL
============================================ */
.gps-hormonal {
  background: var(--verde-escuro);
  color: var(--branco);
}

.gps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.gps-hormonal .section-tag { color: var(--dourado); }

.gps-hormonal .section-titulo {
  color: var(--branco);
  margin-bottom: 0.5rem;
}

.gps-subtitulo {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.gps-quote {
  border-left: 3px solid var(--dourado);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.gps-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.gps-lista li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gps-btn {
  background: var(--dourado);
  color: var(--branco);
  font-size: 1rem;
  padding: 16px 36px;
  margin-bottom: 0.75rem;
}

.gps-btn:hover {
  background: var(--dourado-escuro);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.4);
}

.gps-obs {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* Card visual GPS */
.gps-visual { display: flex; justify-content: center; }

.gps-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.gps-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bege-escuro);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gps-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
}

.gps-card-header strong {
  font-family: var(--fonte-titulo);
  font-size: 1.6rem;
  color: var(--verde-escuro);
}

.gps-sub {
  font-size: 0.75rem;
  color: var(--texto-claro);
}

.gps-fases {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gps-fase {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--bege);
  border-radius: var(--raio);
}

.gps-fase-num {
  font-family: var(--fonte-titulo);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dourado);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.gps-fase div { display: flex; flex-direction: column; gap: 2px; }

.gps-fase strong {
  font-size: 0.9rem;
  color: var(--verde-escuro);
  font-family: var(--fonte-corpo);
}

.gps-fase span {
  font-size: 0.78rem;
  color: var(--texto-claro);
}

.gps-card-footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--texto-claro);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bege-escuro);
}

@media (max-width: 1024px) {
  .gps-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gps-visual { order: -1; }
}

@media (max-width: 768px) {
  .gps-card { max-width: 100%; }
}

/* ============================================
   SEÇÃO INSTAGRAM
============================================ */
.secao-instagram {
  background: #FAF3E0;
}

.instagram-feed-placeholder {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.instagram-post-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bege-escuro), var(--bege));
  border-radius: 8px;
}

@media (max-width: 768px) {
  .instagram-feed-placeholder { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   ADMIN BAR (quando logado no WP)
============================================ */
body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .hero {
  padding-top: 132px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
  body.admin-bar .hero {
    padding-top: 146px;
  }
}
