/* ============================================================
   SECTIONS.CSS — Estilos Especificos de Cada Secao
   Maikol Koch — Landing Page

   Cada secao da pagina tem seus estilos isolados aqui.
   Se precisar mexer no Hero, so olhe a secao "HERO" abaixo.
   ============================================================ */

/* ── SECAO 0 — TARJA TOPO ── */
.tarja {
  background: linear-gradient(135deg, #0D2818, #1A3A24, #0D2818);
  height: var(--tarja-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
}

.tarja::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.15), transparent);
  animation: tarja-glow 3s ease-in-out infinite;
}

@keyframes tarja-glow {
  0% { left: -100%; }
  100% { left: 100%; }
}

.tarja p {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.4);
}

.mobile-break {
  display: none;
}

.tarja-line1 {
  display: inline;
  white-space: nowrap;
}

/* ── SECAO 1 — NAVBAR ── */
.navbar {
  background: var(--black-header);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: var(--tarja-height);
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo svg {
  width: 28px;
  height: 28px;
}

.navbar-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
}

/* ── SECAO 2 — HERO ── */
.hero {
  margin-top: var(--tarja-height);
  background: var(--black-pure);
  background-image: url('../fotos-expert/bg-hero5.webp');
  background-size: 1920px 834px;
  background-position: center top;
  background-repeat: no-repeat;
  height: 667px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-primary), var(--gold-dark), transparent) 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.93) 38%,
    rgba(0,0,0,0.55) 52%,
    rgba(0,0,0,0.1)  64%,
    transparent 74%
  );
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0 0 80px;
}

.hero-text {
  width: 540px;
  max-width: 40%;
}

.hero-label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 11px;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  opacity: 0.9;
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.55vw, 1.9rem);
  line-height: 1.45;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.hero h1 .hero-highlight {
  color: #fff;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  line-height: 1.7;
  color: var(--gray-sub);
  margin-bottom: 6px;
}

.hero-sub-cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  line-height: 1.7;
  color: var(--gray-sub);
  margin-bottom: 22px;
}

.hero-trust {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 10px;
}

/* Elementos exclusivos do mobile (estilo Olimpo) — ocultos no desktop */
.hero-photo-mobile {
  display: none;
}

.hero-investimento {
  display: none;
}

/* ── SECAO 3 — VANTAGENS ── */
.vantagens {
  padding: 40px 0 var(--spacing-xxl);
  background: var(--black-pure);
}

.vantagens-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gray-sub);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── SECAO 4 — BIO ── */
.bio {
  padding: var(--spacing-xxl) 0;
  background: var(--black-pure);
  position: relative;
}

.bio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.bio .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.bio-photo img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  max-height: 500px;
}

.bio-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
  color: var(--gold-soft);
  margin-bottom: 28px;
}

.bio-content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.875;
  margin-bottom: 20px;
}

/* ── SECAO 5 — PROVA SOCIAL ── */
.prova-social {
  padding: var(--spacing-xxl) 0;
  background: #0A0A0A;
}

/* ── SECAO 6 — FAQ ── */
.faq {
  padding: var(--spacing-xxl) 0;
  background: var(--black-footer);
}

/* ── SECAO 7 — CTA FINAL ── */
.cta-final {
  padding: var(--spacing-xxl) 0;
  background: linear-gradient(180deg, #000000 0%, #0A1A0E 100%);
  text-align: center;
}

.cta-final h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.cta-final .sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gray-sub);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-reinforce {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 16px;
}

/* ── SECAO 8 — FOOTER ── */
.footer {
  padding: var(--spacing-lg) 0;
  background: var(--black-footer);
  text-align: center;
  border-top: 1px solid rgba(215, 196, 145, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-mid);
  transition: color var(--transition-fast);
}

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

.footer-copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--dark-text);
}
