/* =========================================================
   Mulher Seja um Girassol — estilo principal
   Paleta inspirada na logo (girassol, folhas, marrom)
   ========================================================= */

/* ---------- Fontes locais ---------- */
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 400;
  font-display: swap; src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 500;
  font-display: swap; src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 600;
  font-display: swap; src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 700;
  font-display: swap; src: url('../fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display'; font-style: normal; font-weight: 700;
  font-display: swap; src: url('../fonts/playfair-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Dancing Script'; font-style: normal; font-weight: 700;
  font-display: swap; src: url('../fonts/dancingscript-700.woff2') format('woff2');
}

/* ---------- Variáveis ---------- */
:root {
  --amarelo:     #FBB315;
  --amarelo-esc: #F5A623;
  --dourado:     #F6A800;
  --marrom:      #8A4B0F;
  --marrom-esc:  #5C3310;
  --verde:       #6FBF2F;
  --verde-esc:   #4E9A06;
  --creme:       #FFFBF2;
  --creme-2:     #FFF4DC;
  --texto:       #4A3B28;
  --sombra:      0 .5rem 1.5rem rgba(138, 75, 15, .12);
}

/* ---------- Base ---------- */
* { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--texto);
  background: var(--creme);
  padding-top: 84px;
}
h1, h2, h3, .titulo-serif {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--marrom);
  font-weight: 700;
}
.script {
  font-family: 'Dancing Script', cursive;
  color: var(--dourado);
}
a { color: var(--verde-esc); }
section { padding: 5rem 0; }

/* ---------- Botões ---------- */
.btn-girassol {
  background: linear-gradient(135deg, var(--amarelo) 0%, var(--dourado) 100%);
  color: #fff; border: none; font-weight: 600;
  border-radius: 50px; padding: .6rem 1.6rem;
  box-shadow: 0 .3rem .8rem rgba(246, 168, 0, .35);
  transition: transform .2s, box-shadow .2s;
}
.btn-girassol:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 .6rem 1.2rem rgba(246, 168, 0, .45);
}
.btn-outline-girassol {
  border: 2px solid var(--dourado); color: var(--marrom);
  background: transparent; font-weight: 600; border-radius: 50px;
  padding: .55rem 1.6rem; transition: all .2s;
}
.btn-outline-girassol:hover { background: var(--dourado); color: #fff; }
.btn-whatsapp {
  background-color: #25D366; color: #fff; border: none; font-weight: 600;
  border-radius: 50px; padding: .6rem 1.6rem;
  box-shadow: 0 .3rem .8rem rgba(37, 211, 102, .35);
  transition: transform .2s, box-shadow .2s, background-color .2s;
}
.btn-whatsapp:hover,
.btn-whatsapp:focus,
.btn-whatsapp:active {
  background-color: #1da851; color: #fff; transform: translateY(-2px);
  box-shadow: 0 .6rem 1.2rem rgba(37, 211, 102, .45);
}

/* ---------- Navbar ---------- */
.navbar-girassol {
  background: rgba(255, 251, 242, .92);
  backdrop-filter: blur(8px);
  box-shadow: 0 .2rem .8rem rgba(138, 75, 15, .08);
  transition: padding .3s;
  padding: .5rem 0;
}
/* logo horizontal 640x237 (~2.7:1) — dimensiona pela altura, largura automática */
.navbar-girassol .brand-logo { height: 52px; width: auto; display: block; transition: height .3s; }
.navbar-girassol.shrink { padding: .2rem 0; }
.navbar-girassol.shrink .brand-logo { height: 42px; }
.navbar-girassol .nav-link {
  color: var(--marrom); font-weight: 500; margin: 0 .35rem;
  position: relative;
}
.navbar-girassol .nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--dourado); transition: width .25s;
}
.navbar-girassol .nav-link:hover::after,
.navbar-girassol .nav-link.active::after { width: 100%; }
.navbar-girassol .nav-link.active { color: var(--dourado); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 70% 20%, var(--creme-2) 0%, var(--creme) 60%);
  overflow: hidden; padding: 6rem 0 5rem;
}
.hero::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,179,21,.25), transparent 70%);
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; }
.hero .lead-script { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.hero p.intro { font-size: 1.15rem; max-width: 540px; }
/* logo quadrada 1:1 — limita largura e centraliza */
.hero-logo { width: 100%; max-width: 420px; height: auto; margin: 0 auto; filter: drop-shadow(var(--sombra)); }

/* ---------- Cartões de atividade ---------- */
.card-eixo {
  background: #fff; border: none; border-radius: 1.25rem;
  box-shadow: var(--sombra); height: 100%;
  transition: transform .25s, box-shadow .25s; overflow: hidden;
}
.card-eixo:hover { transform: translateY(-6px); box-shadow: 0 1rem 2rem rgba(138,75,15,.18); }
.card-eixo .eixo-icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2rem; color: #fff;
  margin: 0 auto 1rem;
}
.bg-nutri  { background: linear-gradient(135deg, var(--verde), var(--verde-esc)); }
.bg-fisica { background: linear-gradient(135deg, #4FC3F7, #0288D1); }
.bg-auto   { background: linear-gradient(135deg, var(--amarelo), var(--dourado)); }
.bg-socio  { background: linear-gradient(135deg, #FF8A65, #E64A19); }

/* ---------- Badges de valores ---------- */
.badge-valor {
  background: var(--creme-2); color: var(--marrom); border: 1.5px solid var(--amarelo);
  border-radius: 50px; padding: .4rem 1rem; font-weight: 600; font-size: .95rem;
}

/* ---------- Depoimentos ---------- */
.depoimento-card {
  display: flex; flex-direction: column; height: 100%; width: 100%;
  background: #fff; border: 0; padding: 0; text-align: left; font: inherit;
  cursor: pointer; border-radius: 1.25rem; overflow: hidden;
  box-shadow: var(--sombra); text-decoration: none; color: var(--texto);
  transition: transform .25s, box-shadow .25s;
}
.depoimento-card:hover { transform: translateY(-6px); box-shadow: 0 1rem 2rem rgba(138,75,15,.18); }
.depo-thumb { position: relative; aspect-ratio: 4/3; background: var(--creme-2); overflow: hidden; }
.depo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.depo-play {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(246,168,0,.92); color: #fff; font-size: 1.8rem;
  transition: transform .25s;
}
.depoimento-card:hover .depo-play { transform: scale(1.1); }
.depo-info { padding: 1rem 1.25rem; display: flex; flex-direction: column; }
.depo-info strong { color: var(--marrom); }
.depo-info small { color: #8a7a5f; }

/* ---------- Galeria (abas + grade + lightbox) ---------- */
.nav-pills .nav-link { color: var(--marrom); font-weight: 600; border-radius: 50px; }
.nav-pills .nav-link.active { background: var(--dourado); color: #fff; }

.evento-filtros { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.evento-btn {
  background: #fff; border: 1.5px solid #eadfca; color: var(--marrom);
  border-radius: 50px; padding: .35rem .9rem; font-weight: 600; transition: all .2s;
}
.evento-btn:hover { border-color: var(--dourado); }
.evento-btn.active { background: var(--dourado); border-color: var(--dourado); color: #fff; }
.evento-qtd {
  display: inline-block; background: rgba(0,0,0,.12); border-radius: 50px;
  padding: 0 .5rem; font-size: .78rem; margin-left: .25rem;
}
.evento-btn.active .evento-qtd { background: rgba(255,255,255,.3); }

.galeria-thumb {
  display: block; aspect-ratio: 1/1; border-radius: .9rem; overflow: hidden;
  box-shadow: var(--sombra); cursor: pointer;
}
.galeria-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.galeria-thumb:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background: rgba(40, 22, 4, .92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox .lb-img {
  max-width: 90vw; max-height: 85vh; border-radius: .5rem;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.5);
}
.lightbox button {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: none;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; cursor: pointer;
  transition: background .2s;
}
.lightbox button:hover { background: var(--dourado); }
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 575px) {
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lightbox button { width: 44px; height: 44px; }
}

/* ---------- Faixas / seções alternadas ---------- */
.bg-creme  { background: var(--creme-2); }
.bg-petala {
  background: linear-gradient(135deg, var(--amarelo) 0%, var(--dourado) 100%);
  color: #fff;
}
.bg-petala h1, .bg-petala h2, .bg-petala h3 { color: #fff; }

/* ---------- Lista de encontros ---------- */
.lista-encontros li {
  background: #fff; border-radius: 1rem; padding: 1rem 1.25rem;
  margin-bottom: .85rem; box-shadow: var(--sombra);
  display: flex; align-items: center; gap: 1rem;
}
.lista-encontros li i { color: var(--dourado); font-size: 1.5rem; }

/* ---------- Como participar (passos) ---------- */
.passo { text-align: center; }
.passo .passo-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--marrom); color: #fff; font-weight: 700; font-size: 1.5rem;
  display: grid; place-items: center; font-family: 'Playfair Display', serif;
}

/* ---------- Formulário de contato ---------- */
.form-girassol .form-control {
  border-radius: .75rem; border: 1.5px solid #eadfca; padding: .75rem 1rem;
}
.form-girassol .form-control:focus {
  border-color: var(--dourado); box-shadow: 0 0 0 .2rem rgba(246,168,0,.2);
}

/* ---------- Aviso "em breve" ---------- */
.aviso-breve {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--creme-2); border: 1.5px dashed var(--amarelo);
  border-radius: 1rem; padding: 1.25rem 1.5rem;
}
.aviso-breve i { color: var(--dourado); font-size: 1.6rem; line-height: 1.2; }
.aviso-breve strong { color: var(--marrom); }

/* ---------- Page header (internas) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--creme-2), var(--creme));
  padding: 3.5rem 0 2.5rem; text-align: center;
  border-bottom: 4px solid var(--amarelo);
}
.page-header .script { font-size: 2rem; }

/* ---------- Footer ---------- */
.footer-girassol {
  background: var(--marrom-esc); color: #f3e7d4; padding: 3.5rem 0 1.5rem;
  position: relative;
}
.footer-logo { height: 64px; width: auto; max-width: 100%; background: #fff; padding: .5rem .75rem; border-radius: .75rem; }
.footer-title { color: var(--amarelo); font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.footer-text { color: #e7d9c2; font-size: .95rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: #e7d9c2; text-decoration: none; display: inline-block; padding: .2rem 0; }
.footer-links a:hover { color: var(--amarelo); }
.footer-divider { border-color: rgba(255,255,255,.15); margin: 2rem 0 1rem; }
.footer-copy { color: #c9b89c; font-size: .9rem; }

/* ---------- Voltar ao topo ---------- */
.btn-totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 1030;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--dourado); color: #fff; font-size: 1.2rem;
  box-shadow: var(--sombra); opacity: 0; visibility: hidden;
  transition: opacity .3s, transform .3s;
}
.btn-totop.show { opacity: 1; visibility: visible; }
.btn-totop:hover { transform: translateY(-3px); }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 991px) {
  .navbar-girassol .btn-girassol { margin-top: .5rem; }
  body { padding-top: 76px; }
}
