/* ============================================================
   layout.css — Layout e utilitários (sem Tailwind)
   ============================================================ */

/* ===== UTILITÁRIOS BÁSICOS ===== */
.hidden   { display: none !important; }
.text-gold { color: var(--color-gold); }

/* ===== CONTAINERS ===== */
.container    { max-width: 72rem;  margin: 0 auto; padding: 0 1.25rem; }
.container-md { max-width: 56rem;  margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 48rem;  margin: 0 auto; padding: 0 1.25rem; }

/* ===== SECTIONS — fundo e espaçamento ===== */
section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 7rem 0; } }

#sobre, #galeria, #faq, #metodologia { background: var(--color-surface); }
#beneficios, #planos, #depoimentos   { background: var(--color-bg); }

.cta-section { padding: 6rem 0; }
@media (min-width: 768px) { .cta-section { padding: 9rem 0; } }

/* ===== SECTION HEADER ===== */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-sub  { max-width: 36rem; }
.section-sub.centered { margin-left: auto; margin-right: auto; }

/* ===== NAVBAR ===== */
#navbar { position: fixed; top: 0; width: 100%; z-index: 50; }

.navbar-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .navbar-inner { height: 5rem; } }

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.navbar-logo-img {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.10);
}
.navbar-brand {
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 768px) { .navbar-links { display: flex; } }

.navbar-link {
  color: rgba(255,255,255,0.60);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.navbar-link:hover { color: white; }

.nav-toggle-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  background: none;
  color: white;
  cursor: pointer;
  transition: background var(--transition);
}
.nav-toggle-btn:hover { background: rgba(255,255,255,0.10); }
.nav-toggle-btn svg { width: 1.5rem; height: 1.5rem; display: block; }
@media (min-width: 768px) { .nav-toggle-btn { display: none; } }

.nav-mobile {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 768px) { .nav-mobile { display: none !important; } }

.nav-mobile-link {
  color: rgba(255,255,255,0.75);
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
}

/* ===== HERO ===== */
.hero-inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 7rem 1.25rem;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { .hero-inner { padding-top: 0; padding-bottom: 0; } }

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* hero-badge, hero-h1, hero-sub, hero-ctas, hero-stats, hero-figure
   já existem no style.css — aqui só os complementamos */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(245,166,35,0.10);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (min-width: 1024px) { .hero-h1 { font-size: 4.5rem; } }
.hero-sub {
  color: rgba(255,255,255,0.60);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 28rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.hero-stats { display: flex; flex-wrap: wrap; column-gap: 2rem; row-gap: 1.25rem; }
.hero-stat-sep { border-left: 1px solid rgba(255,255,255,0.10); padding-left: 2rem; }

.stat-num        { font-size: 1.875rem; font-weight: 900; color: var(--color-gold); }
.stat-num--white { color: white; }
.stat-desc       { color: rgba(255,255,255,0.45); font-size: 0.75rem; margin-top: 0.125rem; }

.hero-figure { display: none; }
@media (min-width: 768px) { .hero-figure { display: flex; align-items: center; justify-content: center; } }

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.20);
  animation: scroll-bounce 1.2s ease-in-out infinite;
}
@media (min-width: 768px) { .scroll-hint { display: flex; } }
.scroll-hint svg { width: 1.25rem; height: 1.25rem; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  /* overflow:hidden cria BFC, ancora 1fr ao container e impede que o Swiper expanda a coluna */
  overflow: hidden;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5rem; overflow: visible; } }

.about-media { position: relative; min-width: 0; }

.prof-deco {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 66.666%;
  height: 66.666%;
  border: 2px solid rgba(245,166,35,0.20);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

.body-text {
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.mission-box {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
}
.mission-label {
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}
.mission-quote {
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.values-label {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}
.values-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ===== PLANS E TESTIMONIALS — containers dinâmicos (JS) ===== */
#plans-container {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) { #plans-container { grid-template-columns: repeat(3, 1fr); } }

#testimonials-container {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { #testimonials-container { grid-template-columns: repeat(3, 1fr); } }

#benefits-container { gap: 1.25rem; }

/* ===== PLANS EXTRAS ===== */
.plans-extras { margin-top: 3.5rem; }
.plans-extras-label {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
}
.plans-extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) { .plans-extras-grid { grid-template-columns: repeat(4, 1fr); } }
.plans-extras-item  { text-align: center; }
.plans-extras-icon  { font-size: 1.5rem; margin-bottom: 0.5rem; }
.plans-extras-text  { font-size: 0.875rem; font-weight: 600; }

/* ===== FAQ FOOTER ===== */
.faq-footer {
  text-align: center;
  color: rgba(255,255,255,0.40);
  font-size: 0.875rem;
  margin-top: 2.5rem;
}
.faq-footer a {
  color: var(--color-gold);
  font-weight: 600;
}
.faq-footer a:hover { text-decoration: underline; }

/* ===== CTA INNER ===== */
.cta-inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.cta-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 0.5rem;
}
.cta-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }
.btn-wa--lg, .btn-outline--lg { font-size: 1.125rem; padding: 1rem 2rem; }

/* ===== FOOTER ===== */
footer {
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3.5rem 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand-text {
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.footer-tagline {
  color: rgba(255,255,255,0.40);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 18rem;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-instagram:hover { color: var(--color-gold); }
.footer-instagram svg { width: 1rem; height: 1rem; }

.footer-col-label {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-wa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-contact-wa:hover { color: white; }
.footer-contact-wa svg { width: 1rem; height: 1rem; color: #25D366; flex-shrink: 0; }
.footer-contact-addr {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
}
.footer-contact-addr svg { width: 1rem; height: 1rem; margin-top: 0.125rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.footer-made { color: rgba(255,255,255,0.15); font-size: 0.75rem; }
