:root{
  --bg1:#04152b;
  --bg2:#0e3b63;
  --accent:#29a8e0;
  --white:#ffffff;
  --muted:#b8d6ea;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial}
.page{min-height:100%;background:linear-gradient(180deg,var(--bg1),#06243d);color:var(--white);}

.hero {
  position: relative;
  overflow: hidden;
  /* Altura mínima para garantir que mostre conteúdo e imagem */
  min-height: 600px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ou 'contain' dependendo se hero.png já é formato mobile */
  object-position: top center;
}

.hero-inner{
  position:relative;
  max-width:480px;
  margin:0 auto;
  text-align:center;
  padding-top:280px; /* Descer para área do "peito/barriga" */
  z-index: 10;
}

/* Remover fallback */
.instructors, .digital-bg-stack, .instructors::after {display: none;}

.hero-copy{
  position:relative;
  padding: 20px;
  text-align:center;
}

/* Tipografia exata do modelo */
.date{
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 800; /* Extra bold */
  font-style: italic; /* Italic */
  margin: 0;
  color: var(--white);
  line-height: 0.85;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}
.date span{
  display: block;
  font-size: 40px;
  font-weight: 700; /* Bold */
  font-style: normal; /* "de Março" parece menos inclinado ou normal */
  color: var(--accent); /* Azul Cyan */
  text-transform: none;
  margin-top: 4px;
}

.time{
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 10px 0 16px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}
.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown .number {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.3);
  padding: 8px 6px;
  border-radius: 6px;
  min-width: 44px;
}
.countdown .label {
  font-size: 8px;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
  opacity: 0.9;
}
.countdown .separator {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
  align-self: flex-start; 
}

.course{
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 300; /* Light/Thin */
  color: var(--accent);
  margin: 0 0 4px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.title{
  font-family: 'Racing Sans One', cursive;
  font-size: 50px;
  margin: 0 0 16px;
  color: var(--white);
  line-height: 0.9;
  text-transform: uppercase;
  font-style: normal; /* Removido itálico forçado */
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.day-program {
  margin-top: 20px;
  text-align: left;
}
.day-title {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
}
.day-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  font-style: italic;
}
.intro-text {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.result-block h3 {
  color: var(--accent);
}


.site-info {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.cta{
  display:inline-block;
  padding:14px 28px;
  border-radius:50px;
  background:linear-gradient(90deg,var(--accent),#1e8bc0); /* Gradiente azul */
  border:none;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  text-transform:uppercase;
}
.cta:hover{transform:translateY(-2px);box-shadow:0 12px 24px rgba(41,168,224,0.4);}


.content{padding:18px;max-width:480px;margin:0 auto}
/* Card Base */
.card{
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}
.card h3{
  margin:0 0 12px;
  font-size: 18px; 
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

/* Intro Card */
.intro-sub {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}

/* Day Cards */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.day-badge {
  background: var(--accent);
  color: var(--bg1);
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  flex-shrink: 0;
}
.card-header h4 {
  margin: 0;
  font-size: 16px;
  color: var(--white);
  line-height: 1.2;
}

/* Accordion Styling */
details {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
}
details:last-child {border-bottom: none;}
summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  list-style: none; /* Hide default triangle */
  position: relative;
  padding-right: 20px;
  transition: color 0.2s;
}
summary::-webkit-details-marker {display: none;} /* Hide default triangle Chrome */
summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-weight: 400;
  font-size: 18px;
  color: var(--accent);
}
details[open] summary {color: var(--white); margin-bottom: 8px;}
details[open] summary::after {content: '-';}

details p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #a0bed5;
  padding-left: 0;
}

.intro-text {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0;
}

.site-footer{padding:18px;text-align:center;font-size:12px;color:var(--muted)}

/* Mobile tweaks */
@media(min-width:520px){
  .title{font-size:56px}
  .inst{height:260px}
}

/* Accessibility */
.cta:focus{outline:3px solid rgba(41,168,224,.25);outline-offset:4px}

/* New Sections */
.bullets { list-style: none; padding: 0; margin: 0; }
.bullets li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 14px; color: var(--muted); line-height: 1.4; }
.bullets li::before { content: '•'; color: var(--accent); position: absolute; left: 0; font-size: 18px; line-height: 1; top: -2px; }
.bullets li strong { color: var(--white); }

.pricing .price { font-size: 32px; font-weight: 800; color: var(--white); margin: 16px 0; letter-spacing: -0.5px; }
.pricing .small { font-size: 12px; color: var(--muted); margin-top: 10px; }
.pricing { text-align: center; }

.highlight-item summary { color: var(--accent); }
.highlight-item[open] summary { color: var(--accent); }

/* Additional Styles for New Structure */
.bullets.cross-list li::before { content: '×'; color: #e74c3c; font-size: 22px; top: -4px; }
.impact-message {
  margin-top: 16px;
  font-style: italic;
  color: var(--white);
  text-align: center;
  border-left: 2px solid var(--accent);
  padding: 10px;
  background: rgba(41,168,224,0.1);
  border-radius: 0 8px 8px 0;
  font-weight: 500;
}
.method-block .steps-list li { margin-bottom: 15px; }

/* --- DYNAMIC ANIMATIONS --- */

html { scroll-behavior: smooth; }

/* Gradient Animation for Body */
body {
    background: linear-gradient(-45deg, #0b0d10, #131c25, #0f1215);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border-color: rgba(41,168,224, 0.5);
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered List Items */
.reveal .bullets li {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.active .bullets li {
    opacity: 1;
    transform: translateX(0);
}
/* Manual delays for first 5 items to look cool without JS loop */
.reveal.active .bullets li:nth-child(1) { transition-delay: 0.1s; }
.reveal.active .bullets li:nth-child(2) { transition-delay: 0.2s; }
.reveal.active .bullets li:nth-child(3) { transition-delay: 0.3s; }
.reveal.active .bullets li:nth-child(4) { transition-delay: 0.4s; }
.reveal.active .bullets li:nth-child(5) { transition-delay: 0.5s; }

/* Pulse CTA */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(41, 168, 224, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(41, 168, 224, 0); }
    100% { box-shadow: 0 0 0 0 rgba(41, 168, 224, 0); }
}
.cta.primary {
    animation: pulse-glow 2s infinite;
    transition: transform 0.2s;
}
.cta.primary:hover {
    transform: scale(1.05);
}

/* Impact Message Pop */
.impact-message {
    transition: transform 0.3s;
}
.impact-message:hover {
    transform: scale(1.02);
}

/* --- GREEN CTA & OFFER --- */
.cta.checkout {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
  animation: pulse-green 2s infinite;
  display: inline-block; /* Ensure it behaves like a button */
}
.cta.checkout:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(46, 204, 113, 0.6);
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.old-price {
  text-decoration: line-through;
  color: #e74c3c;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  opacity: 0.8;
}
.price-box {
  background: rgba(0,0,0,0.2);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  margin: 20px 0;
}
.installment-highlight {
  color: #2ecc71;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-top: 4px;
}

/* --- SUMMARY HIGHLIGHT BLOCK --- */
.summary-box {
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.summary-lead {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
  font-weight: 700;
}
.summary-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto;
  border-radius: 2px;
}
.summary-detail {
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}
.highlight-days {
  color: var(--accent);
  font-weight: 800;
  font-size: 20px;
  display: inline-block;
}
.summary-detail strong {
  font-weight: 700;
  color: #fff;
}

/* --- ACCORDION WRAPPER (Cards Pattern) --- */
.day-accordion {
  background: rgba(22, 33, 44, 0.8);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08); /* Subtle border */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.day-accordion:hover {
  transform: translateY(-2px);
  border-color: rgba(41,168,224,0.3);
}

.day-accordion summary {
  background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent);
  padding: 20px;
  margin: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 18px; /* Bigger font */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background 0.3s;
}
.day-accordion summary:hover {
  background: rgba(255,255,255,0.06);
}
.day-accordion[open] summary {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(41,168,224, 0.1); /* Active accent tint */
}

/* Custom Day Badge in Summary */
.day-accordion .day-badge {
  background: var(--accent);
  color: #0b1116;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Arrow Icon */
.day-accordion summary::after {
  content: '\002B'; /* Plus sign */
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  transition: transform 0.3s;
}
.day-accordion[open] summary::after {
  content: '\2212'; /* Minus sign */
  color: var(--white);
  transform: rotate(180deg);
}

/* Content List */
.day-accordion ul {
  padding: 20px 25px;
  margin: 0;
  background: rgba(0,0,0,0.15); /* Slightly darker inner bg */
}
.day-accordion ul li {
  margin-bottom: 12px;
  color: #cfdce8;
}
.day-accordion ul li:last-child { margin-bottom: 0; }
.day-accordion ul li strong { color: var(--white); }

/* --- TOP BAR & COUNTDOWNS --- */
.top-bar {
  background: linear-gradient(90deg, #111, #000);
  color: #fff;
  padding: 10px 5%;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-bottom: 1px solid var(--accent);
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.top-bar .highlight {
  color: #2ecc71;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(46, 204, 113, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

/* New Top Bar Progress */
.top-bar-progress {
  width: 100px; /* Small fixed width for top bar */
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.top-bar-fill {
  background: linear-gradient(90deg, #ff4d4d, #ff0000);
  width: 85%; /* Static urgent state */
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

/* stripes animation for small bar */
.top-bar-fill::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.4) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.4) 75%,
    transparent 75%,
    transparent
  );
  background-size: 10px 10px;
  animation: move-stripes 1s linear infinite;
}

@keyframes move-stripes {
  0% { background-position: 0 0; }
  100% { background-position: 10px 0; }
}

.top-progress-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-progress-text {
  font-size: 10px;
  font-weight: 800;
  color: #ff4d4d;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.mini-countdown {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.mini-countdown .time-box {
  background: #222;
  color: var(--accent);
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  font-size: 11px;
  border: 1px solid #333;
}
.mini-countdown .sep { margin: 0 1px; color: #666; font-size: 9px; }

/* Bottom Card Countdown */
.card-countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0;
  background: rgba(0,0,0,0.3);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.card-countdown .time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-countdown .num {
  font-size: 20px;
  font-weight: 800;
  color: #2ecc71;
  line-height: 1;
}
.card-countdown .txt {
  font-size: 9px;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 4px;
}

/* --- URGENCY PROGRESS BAR --- */
.urgency-container { margin: 10px 0; }
.urgency-label { display: flex; justify-content: space-between; font-size: 10px; color: #aaa; margin-bottom: 5px; font-weight: 600; text-transform: uppercase; }
.progress-track { background: rgba(255,255,255,0.1); border-radius: 10px; height: 10px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,0.05); }
.progress-fill { background: linear-gradient(90deg, #e74c3c, #c0392b); height: 100%; border-radius: 10px; width: 95%; transition: width 1s linear; box-shadow: 0 0 10px rgba(231, 76, 60, 0.5); position: relative; }
.progress-fill::after { content: ''; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); background-size: 1rem 1rem; animation: progress-stripes 1s linear infinite; }
@keyframes progress-stripes { from { background-position: 1rem 0; } to { background-position: 0 0; } }
