/* === RESET & TOKENS === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:  #15263F;
  --gold:  #C9A84C;
  --cream: #EEE8DC;
  --cream2:#F5F1E8;
  --white: #FAFAF8;
  --gd:    'Gilda Display', serif;
  --ss:    'Source Sans 3', sans-serif;
  --ease:  cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body { font-family: var(--ss); background: var(--white); color: var(--navy); -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }

/* === STICKY NAV === */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  transition: background .4s var(--ease), padding .3s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 32px rgba(0,0,0,.28);
  padding: 14px 56px;
}
.nav-logo { height: 42px; opacity: 0; transition: opacity .35s var(--ease); }
.nav.scrolled .nav-logo { opacity: 1; }
.nav-pill {
  opacity: 0; transition: opacity .35s var(--ease), transform .2s var(--ease), background .2s;
  font-family: var(--ss); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 11px 28px; border: none; cursor: pointer;
}
.nav.scrolled .nav-pill { opacity: 1; }
.nav-pill:hover { background: #d4b55e; transform: translateY(-1px); }

/* === BUTTONS === */
.btn {
  display: inline-block; cursor: pointer; border: none;
  font-family: var(--ss); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.btn-gold {
  background: linear-gradient(135deg, #a07828 0%, #C9A84C 100%);
  color: var(--navy); padding: 22px 56px; font-size: 15px;
  border-radius: 60px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #b98930 0%, #d9bb62 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
}
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); padding: 20px 52px; font-size: 15px; }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* === LAYOUT === */
.section { padding: 104px 24px; }
.wrap     { max-width: 1120px; margin: 0 auto; }
.wrap--sm { max-width: 820px;  margin: 0 auto; }
.wrap--xs { max-width: 620px;  margin: 0 auto; }

/* === TYPE === */
.eyebrow {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.display { font-family: var(--gd); font-weight: 400; line-height: 1.1; }
h2.display { font-size: clamp(34px, 4.2vw, 58px); }
h3.display { font-size: clamp(22px, 2.5vw, 30px); }
.lead { font-size: clamp(16px, 1.7vw, 19px); line-height: 1.72; font-weight: 300; }

/* === FADE-UP ANIMATION === */
.fu { opacity: 0; transform: translateY(30px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fu.vis { opacity: 1; transform: none; }
.fu:nth-child(2) { transition-delay: .08s; }
.fu:nth-child(3) { transition-delay: .16s; }
.fu:nth-child(4) { transition-delay: .24s; }
.fu:nth-child(5) { transition-delay: .32s; }

/* ===========================
   HERO — full-bleed photo
=========================== */
.hero {
  min-height: 100vh;
  background: url('https://enpriscilareis.com.br/uploads/Dra_Fundo_PR.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to right,
    rgba(14,26,46,.88) 0%,
    rgba(14,26,46,.78) 32%,
    rgba(14,26,46,.32) 62%,
    rgba(14,26,46,.04) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 140px 0 100px 9vw;
  max-width: 600px;
}
.hero-logo { height: 48px; margin-bottom: 44px; }
.hero-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--gd); font-size: clamp(42px, 5vw, 76px);
  color: var(--cream); line-height: 1.06; font-weight: 400;
  margin-bottom: 24px;
}
.hero-sub {
  color: rgba(238,232,220,.78); line-height: 1.72;
  max-width: 460px; margin-bottom: 44px; font-weight: 300;
  font-size: clamp(15px, 1.5vw, 18px);
}
.hero-anchor {
  margin-top: 18px; font-size: 13px;
  color: rgba(238,232,220,.45); letter-spacing: .04em;
}
@keyframes caretPulse { 0%,100%{ opacity:.25; } 55%{ opacity:1; } }

/* ===========================
   PAIN
=========================== */
.pain { background: linear-gradient(to bottom, #0a1520 0%, #15263F 100%); }
.pain .eyebrow { color: var(--gold); }
.pain h2 { color: var(--cream); margin-bottom: 56px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pain-card {
  grid-column: span 3;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .25s, background .25s, transform .2s var(--ease);
}
.pain-card:hover {
  border-color: rgba(201,168,76,.55);
  background: rgba(255,255,255,.07);
  transform: translateY(-3px);
}
.pain-card--third { grid-column: span 2; }
.pain-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.28);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); width: fit-content;
}
.pain-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.pain-card p { font-size: 16px; line-height: 1.72; color: rgba(238,232,220,.72); }
.pain-card.closing {
  grid-column: span 6;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 52px 40px; flex-direction: column; gap: 0;
}
.pain-card.closing p {
  font-family: var(--gd); font-size: clamp(20px, 2.2vw, 28px);
  color: var(--cream); font-style: italic; text-align: center;
  max-width: 740px; line-height: 1.45;
}
@media (max-width: 600px) {
  .pain-card, .pain-card--third { grid-column: span 6; }
}

/* ===========================
   COURSE (PILLARS)
=========================== */
.course { background: var(--navy); }
.course h2 { color: var(--cream); margin-bottom: 20px; }
.course-intro { color: rgba(238,232,220,.7); max-width: 720px; margin-bottom: 64px; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,168,76,.12); }
.pillar {
  background: var(--navy); padding: 52px 40px;
  position: relative; overflow: hidden;
  border-top: 2px solid var(--gold);
  transition: background .3s;
}
.pillar:hover { background: rgba(255,255,255,.04); }
.pillar-bg-n {
  position: absolute; top: 12px; right: 20px;
  font-family: var(--gd); font-size: 80px; color: var(--gold);
  opacity: .08; line-height: 1; pointer-events: none; user-select: none;
}
.pillar h3 { font-family: var(--gd); font-size: 28px; color: var(--cream); font-weight: 400; margin-bottom: 18px; }
.pillar p { font-size: 15px; color: rgba(238,232,220,.65); line-height: 1.72; }

/* ===========================
   MODULES — 5 cards
=========================== */
.modules { background: var(--cream); }
.modules h2 { margin-bottom: 56px; color: var(--navy); }
.mod-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
.mod-card {
  background: var(--navy);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid rgba(201,168,76,.15);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(21,38,63,.35);
}
/* Photo area */
.mod-img {
  width: 100%; aspect-ratio: 4/3;
  background: #0e1d30;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.mod-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.mod-card:hover .mod-img img { transform: scale(1.04); }
.mod-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: rgba(201,168,76,.3);
}
.mod-img-placeholder svg { opacity: .4; }
.mod-img-placeholder span {
  font-size: 9px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(201,168,76,.35);
}
/* Card body */
.mod-body {
  padding: 24px 22px 30px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  flex: 1;
}
.mod-ornament {
  margin: 0 auto 14px;
  color: var(--gold); opacity: .7;
}
.mod-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.mod-title {
  font-family: var(--gd); font-size: clamp(16px, 1.4vw, 20px);
  color: var(--cream); font-weight: 400; line-height: 1.25;
  margin-bottom: 12px;
}
.mod-desc {
  font-size: 13px; color: rgba(238,232,220,.58);
  line-height: 1.68; flex: 1;
}
@media (max-width: 900px) {
  .mod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .mod-grid { grid-template-columns: 1fr; }
}

/* ===========================
   ABOUT
=========================== */
.about { background: var(--navy); padding: 0; }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; }
.about-photo {
  position: relative; background: #0e1d30;
  min-height: 740px; overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: drop-shadow(12px 0 32px rgba(21,38,63,.8));
}
.about-text {
  padding: 88px 72px 88px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text h2 { color: var(--cream); margin-bottom: 36px; }
.about-text p { font-size: 16px; color: rgba(238,232,220,.72); line-height: 1.82; margin-bottom: 18px; }
.about-quote {
  border-left: 3px solid var(--gold);
  padding: 22px 28px;
  background: rgba(255,255,255,.04);
  margin-top: 32px; margin-bottom: 32px;
}
.about-quote p {
  font-family: var(--gd); font-size: 22px;
  font-style: italic; color: var(--cream);
  line-height: 1.45; margin: 0;
}
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.cred {
  background: rgba(201,168,76,.12); color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 7px 14px;
}

/* ===========================
   FOR WHO
=========================== */
.forwho { background: var(--white); }
.forwho h2 { margin-bottom: 52px; }
.check-list { display: flex; flex-direction: column; }
.check-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid rgba(21,38,63,.08);
}
.check-box {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-row p { font-size: 17px; line-height: 1.55; color: #333; }
.not-for {
  margin-top: 48px; padding: 28px 32px;
  border: 1px solid rgba(21,38,63,.12);
  background: rgba(21,38,63,.03);
}
.not-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 10px;
}
.not-for p { font-size: 15px; color: #666; line-height: 1.68; font-style: italic; }

/* ===========================
   OFFER
=========================== */
.offer { background: radial-gradient(ellipse at center, #1a3358 0%, #0a1520 100%); text-align: center; }
.offer h2 { color: var(--cream); margin-bottom: 16px; }
.offer-lead { color: rgba(238,232,220,.65); margin-bottom: 56px; font-size: 17px; }
.offer-box {
  max-width: 560px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,.22);
  padding: 60px 52px;
  position: relative;
}
.offer-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
}
.inclusions { text-align: left; margin-bottom: 48px; }
.incl {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid rgba(238,232,220,.08);
}
.incl-mark { color: var(--gold); font-size: 20px; line-height: 1.25; flex-shrink: 0; }
.incl p { color: rgba(238,232,220,.82); font-size: 15px; line-height: 1.4; }
.price-block { margin-bottom: 40px; }
.price-was { font-size: 16px; color: rgba(238,232,220,.3); text-decoration: line-through; margin-bottom: 8px; }
.price-now { font-family: var(--gd); font-size: 76px; color: var(--gold); line-height: 1; }
.price-note { font-size: 13px; color: rgba(238,232,220,.38); margin-top: 6px; }
.secure-note { margin-top: 20px; font-size: 13px; color: rgba(238,232,220,.32); }

/* ===========================
   GUARANTEE
=========================== */
.guarantee { background: var(--cream); text-align: center; }
.g-ring {
  width: 144px; height: 144px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 44px;
}
.g-days { font-family: var(--gd); font-size: 56px; color: var(--gold); line-height: 1; }
.g-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); }
.guarantee h2 { color: var(--navy); margin-bottom: 24px; }
.guarantee p { font-size: 17px; color: #555; line-height: 1.78; }

/* ===========================
   FAQ
=========================== */
.faq { background: var(--white); }
.faq h2 { margin-bottom: 52px; }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(21,38,63,.1); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; text-align: left; gap: 16px;
  font-family: var(--ss); font-size: 17px; font-weight: 600; color: var(--navy);
}
.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold);
  transition: transform .35s var(--ease), background .2s, color .2s;
}
.faq-btn.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-ans {
  overflow: hidden; max-height: 0;
  transition: max-height .42s var(--ease);
}
.faq-ans.open { max-height: 300px; }
.faq-ans p { font-size: 16px; color: #555; line-height: 1.78; padding-bottom: 28px; }

/* ===========================
   FINAL CTA
=========================== */
.final {
  position: relative; text-align: center; padding: 136px 24px;
  background: url('https://enpriscilareis.com.br/uploads/Fundo_PR.jpg') center/cover no-repeat;
}
.final::before { content: ''; position: absolute; inset: 0; background: rgba(21,38,63,.9); }
.final-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.final h2 { font-family: var(--gd); font-size: clamp(38px, 5.5vw, 66px); color: var(--cream); font-weight: 400; line-height: 1.1; margin-bottom: 24px; }
.final .lead { color: rgba(238,232,220,.68); margin-bottom: 52px; }
.final-secure { margin-top: 20px; font-size: 13px; color: rgba(238,232,220,.38); }

/* ===========================
   FOOTER
=========================== */
.footer { background: #0d1a2c; padding: 52px 24px; text-align: center; }
.footer img { height: 54px; margin: 0 auto 24px; }
.footer p { font-size: 13px; color: rgba(238,232,220,.22); }

/* ===========================
   TWEAKS PANEL
=========================== */
#tweaks-panel {
  display: none; position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--white); border: 1px solid rgba(21,38,63,.12);
  box-shadow: 0 12px 40px rgba(0,0,0,.15); padding: 28px; width: 292px;
  font-family: var(--ss);
}
.tp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.tp-title { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--navy); }
.tp-close { background: none; border: none; cursor: pointer; font-size: 22px; color: #aaa; line-height: 1; }
.tp-field { margin-bottom: 20px; }
.tp-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #888; margin-bottom: 10px; }
.tp-seg { display: flex; gap: 2px; }
.tp-seg button {
  flex: 1; padding: 9px; font-size: 12px; font-weight: 600;
  border: 1.5px solid transparent; cursor: pointer; background: rgba(21,38,63,.06); color: var(--navy);
  transition: all .2s; font-family: var(--ss);
}
.tp-seg button.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.tp-select {
  width: 100%; padding: 9px 12px; border: 1px solid rgba(21,38,63,.15);
  font-size: 13px; font-family: var(--ss); color: var(--navy); background: var(--white);
}
.tp-check { display: flex; align-items: center; gap: 10px; font-size: 13px; cursor: pointer; }
.tp-check input { accent-color: var(--gold); }

/* ===========================
   RESPONSIVE — TABLET 960px
=========================== */
@media (max-width: 960px) {
  .nav, .nav.scrolled { padding-left: 24px; padding-right: 24px; }
  .section { padding: 72px 20px; }

  /* Hero */
  .hero { align-items: flex-end; justify-content: center; min-height: 100svh; }
  .hero::before {
    background: linear-gradient(to top,
      rgba(14,26,46,.97) 0%,
      rgba(14,26,46,.85) 50%,
      rgba(14,26,46,.35) 100%);
  }
  .hero-content {
    align-items: center !important; text-align: center !important;
    padding: 0 32px 72px !important;
    max-width: 100% !important; width: 100% !important;
  }
  .hero-logo { margin-left: auto !important; margin-right: auto !important; }
  .hero h1 { text-align: center !important; width: auto !important; }
  .hero-sub { text-align: center !important; width: auto !important; max-width: 560px !important; }
  .btn-gold { width: auto !important; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 420px; }
  .about-text { padding: 52px 32px; }

  /* Course pillars */
  .pillars { grid-template-columns: 1fr; }

  /* Module cards: 3 per row */
  .mod-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===========================
   RESPONSIVE — MOBILE 680px
=========================== */
@media (max-width: 680px) {
  .section { padding: 60px 16px; }
  .wrap, .wrap--sm, .wrap--xs { padding: 0 4px; }

  /* Nav */
  .nav, .nav.scrolled { padding-left: 16px; padding-right: 16px; }
  .nav-pill { font-size: 11px; padding: 9px 18px; }

  /* Hero */
  .hero-content {
    padding: 0 20px 60px !important;
    width: 100% !important;
  }
  .hero-logo { height: 38px !important; margin-bottom: 28px !important; }
  .hero-anchor { font-size: 12px; }

  /* Pain grid: 1 column */
  .pain-card, .pain-card--third { grid-column: span 6; }
  .pain-card.closing { padding: 36px 24px; }

  /* Course pillars */
  .pillar { padding: 36px 28px; }

  /* Module cards: 2 per row */
  .mod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mod-title { font-size: 15px; }
  .mod-desc  { font-size: 12px; }
  .mod-body  { padding: 18px 16px 22px; }

  /* About */
  .about-photo { min-height: 300px; }
  .about-text { padding: 40px 20px; }
  .about-quote p { font-size: 18px; }
  .creds { gap: 6px; }
  .cred { font-size: 9px; padding: 6px 10px; }

  /* For who */
  .check-row p { font-size: 15px; }

  /* Offer */
  .offer-box { padding: 36px 20px !important; }
  .price-now { font-size: 56px; }
  .btn-gold { padding: 18px 24px !important; font-size: 13px !important; width: 100% !important; text-align: center !important; }

  /* Guarantee */
  .g-ring { width: 120px; height: 120px; }
  .g-days { font-size: 44px; }

  /* FAQ */
  .faq-btn { font-size: 15px; }

  /* Final CTA */
  .final { padding: 80px 20px; }

  /* Footer */
  .footer { padding: 40px 16px; }
}

/* ===========================
   RESPONSIVE — SMALL 420px
=========================== */
@media (max-width: 420px) {
  /* Module cards: 1 per row */
  .mod-grid { grid-template-columns: 1fr; }

  /* Hero button full width */
  .btn-gold { width: 100% !important; }

  /* Offer h2 smaller */
  .offer h2 { font-size: 28px !important; }
}
