@font-face {
  font-family: 'Instrument Serif';
  src: url('assets/instrumentserif-755df3cc.woff2') format('woff2');
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/poppins-pxieyp8kv8jhgfvrjjbecmne.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('assets/rubik-348e67f6.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

:root {
  --color-cream-bg: #fdfaf0;
  --color-red: #D94039;
  --color-dark-red: #A02D21;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-green: #11c217;
  --color-green-hover: #0ca312;
  --color-text: #222222;
  --color-pinkish: #D94039;
  
  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-rubik: 'Rubik', sans-serif;
  
  --container-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream-bg);
  color: var(--color-text);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: var(--color-black);
  color: var(--color-white);
  padding: 18px 0;
  font-family: var(--font-sans);
  text-align: center;
}

.top-bar .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.top-bar .label {
  font-size: 14px;
  font-weight: 700;
}

.countdown {
  display: flex;
  gap: 12px;
}

.countdown-unit {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.digit {
  font-size: 24px;
  font-weight: 700;
}

.unit-name {
  font-size: 11px;
  color: var(--color-pinkish);
  font-weight: 700;
  text-transform: uppercase;
}

/* HERO SECTION */
.hero {
  padding: 60px 0 140px;
  position: relative;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 550px;
}

.logo-main {
  max-width: 250px;
  margin-bottom: 40px;
}

.hero-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 35px;
}

.hero-title strong {
  font-weight: 700;
}

.hero-list {
  list-style: none;
  margin-bottom: 40px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
}

.hero-list li svg {
  width: 16px;
  margin-right: 4px;
}

.btn {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-white);
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(13, 181, 23, 0.2);
  transition: transform 0.2s, background 0.2s;
}

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

.hero-price {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-top: 15px;
  text-transform: uppercase;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.instructor-img {
  width: 100%;
  max-width: 480px;
  border-radius: 140px 15px 140px 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* WAVE DIVIDER */
.top-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
}

.top-divider .fill {
  width: 100%;
  height: 100%;
  background-color: var(--color-red);
}

.top-divider .divider-curve {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 48px;
  background-color: var(--color-cream-bg);
  border-radius: 0 0 60px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.top-divider .divider-curve svg {
  margin-top: -10px;
}

/* RED SECTION */
.red-section {
  background: var(--color-red);
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.section-head {
  font-size: 38px;
  margin-bottom: 60px;
  font-weight: 500;
}

.section-head strong {
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.benefit-card {
  background: rgba(0, 0, 0, 0.06);
  padding: 40px 30px;
  border-radius: 12px;
}

.icon-square {
  width: 82px;
  height: 82px;
  background: var(--color-cream-bg);
  border-radius: 12px;
  margin: 0 auto 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-square svg {
  width: auto;
  height: auto;
  max-width: 50px;
  max-height: 50px;
  fill: var(--color-red);
}

.icon-square svg path {
  fill: var(--color-red) !important;
}

.card-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.badge-pill {
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 40px;
}

/* SINAIS */
.sinais {
  padding: 120px 0;
  background: var(--color-cream-bg);
}

.sinais .container {
  display: flex;
  align-items: center;
  gap: 70px;
}

.sinais-img-box {
  flex: 1;
}

.sinais-img-box img {
  width: 100%;
  border-radius: 100px 20px 20px 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.sinais-content {
  flex: 1;
}

.sinais-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

.check-list {
  list-style: none;
  margin-bottom: 40px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;
}

.check-list svg {
  width: 20px;
  fill: var(--color-red);
  margin-top: 5px;
  flex-shrink: 0;
}

.alert-msg {
  color: var(--color-red);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 35px;
}

/* WHITE BOX */
.box-section {
  padding: 80px 0;
}

.white-box {
  background: var(--color-white);
  padding: 80px;
  border-radius: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.04);
}

.white-box h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.white-box p {
  font-size: 18px;
  margin-bottom: 15px;
}

/* STORY */
.story {
  padding: 100px 0;
  text-align: center;
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 54px;
  margin-top: 50px;
  color: var(--color-black);
}

.cycle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cycle-item {
  background: #fff5f5;
  color: var(--color-red);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid rgba(217, 64, 57, 0.15);
}

/* PROOF ROW (iMac layout) */
.proof-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
  text-align: left;
}

.proof-img {
  flex: 1;
}

.proof-img img {
  width: 100%;
  max-width: 550px;
  display: block;
  margin: 0 auto;
}

.proof-content {
  flex: 1;
}

.proof-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.proof-title .subtitle {
  font-weight: 400;
  font-size: 24px;
  color: var(--color-red);
  display: block;
  margin-top: 5px;
}

.proof-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.proof-text strong {
  font-weight: 800;
}

.proof-list {
  list-style: none;
  margin: 20px 0;
}

.proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.proof-list li svg {
  width: 20px;
  min-width: 20px;
  stroke: var(--color-red);
  fill: none;
  stroke-width: 1.5;
  margin-top: 3px;
}

/* RED BOX (Story Section Bottom) */
.red-box {
  background: var(--color-red);
  color: var(--color-white);
  padding: 60px 80px;
  border-radius: 12px;
  max-width: 960px;
  margin: 100px auto 0;
  text-align: center;
}

.red-box .red-box-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 25px;
}

.red-box .red-box-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.red-box .red-box-text strong {
  font-weight: 800;
}

.red-box .red-box-text:last-child {
  margin-bottom: 0;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: #111111;
  color: var(--color-white);
  padding: 100px 0 80px;
  text-align: center;
}

.testimonials .section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.testimonial-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimonials .footer-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

.btn-big {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-white);
  padding: 22px 60px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 8px 25px rgba(13, 181, 23, 0.3);
}

.btn-big:hover {
  background: var(--color-green-hover);
  transform: translateY(-3px);
}

/* IMMERSION DAYS SECTION */
.immersion-section {
  background: #EAE3D3;
  padding: 100px 0;
  text-align: center;
}

.immersion-section .section-subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 50px;
}

.immersion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.night-card {
  background: #F3F0E8;
  padding: 40px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.03);
}

.night-number {
  font-size: 52px;
  font-weight: 800;
  color: #CB4538;
  line-height: 1;
  margin-bottom: 5px;
}

.night-divider {
  width: 40px;
  height: 4px;
  background: #CB4538;
  margin-bottom: 20px;
}

.night-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--color-black);
}

.night-text {
  font-size: 14px;
  line-height: 1.6;
}

/* BONUS SECTION */
.bonus-section {
  background: #CB4538;
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.bonus-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-box-img {
  width: 100%;
  max-width: 380px;
}

.bonus-content {
  flex: 1;
  text-align: left;
}

.bonus-item {
  margin-bottom: 40px;
}

.bonus-item:last-child {
  margin-bottom: 0;
}

.bonus-item h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* PRICING TABLE */
.pricing-section {
  padding: 100px 0;
  background: var(--color-cream-bg);
  text-align: center;
}

.pricing-logo {
  margin: 20px auto 40px;
  max-width: 220px;
}

.pricing-logo img {
  width: 100%;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin: 40px auto;
  padding: 0;
  max-width: 440px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.4;
  color: #111;
}

.pricing-list li svg {
  width: 20px;
  min-width: 20px;
  fill: #CB4538;
  margin-top: 2px;
}

.pricing-card {
  background: #ffffff;
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}

.price-box {
  margin-bottom: 25px;
}

.price-label {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.price-main {
  font-size: 62px;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 20px;
  white-space: nowrap;
  letter-spacing: -1px;
}

.price-lote-tag {
  display: inline-block;
  padding: 8px 100px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 25px;
}

.price-urgent {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.3;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.btn-big-price {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-green);
  color: var(--color-white);
  padding: 22px 20px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 10px 25px rgba(0, 168, 0, 0.25);
}

.btn-big-price:hover {
  background: var(--color-green-hover);
  transform: translateY(-2px);
}

/* BIO SECTION */
.bio-section {
  background: var(--color-cream-bg);
  padding: 120px 0 0;
  position: relative;
}

.bio-grid {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 80px;
}

.bio-img-box {
  flex: 1;
}

.bio-img-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.bio-content {
  flex: 1.4;
  text-align: left;
}

.bio-title {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
}

.bio-paragraphs p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.bio-bullets {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px;
}

.bio-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 18px;
}

.bio-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #111;
  font-weight: bold;
}

/* PRACTICAL SUMMARY */
.practical-summary {
  background: #CB4538;
  padding-bottom: 80px;
  color: #fff;
  text-align: center;
}

.bio-connector {
  position: relative;
  width: 100%;
  height: 80px;
}

.bio-connector svg {
  width: 100%;
  height: 100%;
  display: block;
}

.down-arrow {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.practical-summary .bio-connector {
  margin-top: 0;
  margin-bottom: 60px;
}

.summary-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 40px;
}

.summary-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.summary-list li svg {
  width: 22px;
  min-width: 22px;
  margin-top: 2px;
}

/* FINAL FOOTER */
.final-footer {
  background: var(--color-cream-bg);
  padding: 100px 0;
  text-align: center;
}

.footer-quote {
  margin-bottom: 60px;
}

.quote-mark {
  display: block;
  font-size: 80px;
  color: #F8B4B4;
  line-height: 1;
  margin-bottom: -15px;
  font-family: serif;
}

.quote-text {
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 15px;
  color: #111;
}

.quote-author {
  color: #CB4538;
  font-weight: 800;
  font-size: 16px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #e0e0e0;
  max-width: 600px;
  margin: 0 auto 50px;
}

.footer-final-text {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.btn-green-final {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  padding: 18px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 10px 25px rgba(0, 168, 0, 0.2);
}

.btn-green-final:hover {
  background: var(--color-green-hover);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero .container, .sinais .container, .proof-row, .bonus-grid, .bio-grid { flex-direction: column; text-align: center; }
  .hero-visual, .sinais-img-box, .bio-img-box { width: 100%; }
  .hero-visual { margin-top: 40px; }
  .benefits-grid, .immersion-grid { grid-template-columns: 1fr; }
  .white-box, .red-box { padding: 40px 20px; }
  .bonus-content { text-align: center; }
  .serif-italic { font-size: 40px; }
}

@media (max-width: 576px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonials .section-title { font-size: 24px; }

  /* PRICING MOBILE FIT */
  .pricing-section { padding: 50px 0 40px; }
  .pricing-section .section-head { font-size: 22px; margin-bottom: 5px; }
  .pricing-logo { margin: 10px auto 20px; max-width: 150px; }
  .pricing-list { margin: 20px auto; }
  .pricing-list li { margin-bottom: 14px; font-size: 14px; gap: 10px; }
  .pricing-list li svg { width: 16px; min-width: 16px; }
  .pricing-card { padding: 25px 20px; border-radius: 18px; }
  .price-label { font-size: 13px; margin-bottom: 8px; }
  .price-main { font-size: 42px; margin-bottom: 12px; }
  .price-lote-tag { padding: 6px 50px; font-size: 12px; margin-bottom: 15px; }
  .price-urgent { font-size: 15px; margin-bottom: 18px; }
  .btn-big-price { padding: 16px 15px; font-size: 15px; border-radius: 10px; }
}
