/* ==========================================================================
   Clasmap Academy — Design tokens
   ========================================================================== */
:root{
  --bg: #FFFFFF;
  --bg-soft: #FAF8F5;
  --ink: #221F1C;
  --ink-soft: #6E675F;
  --ink-faint: #A39C93;
  --orange: #E15C29;
  --orange-deep: #B8461C;
  --orange-pale: #FBE4D6;
  --line: #EAE3D9;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius: 22px;
  --radius-sm: 14px;
  --max-w: 480px;

  --ease: cubic-bezier(.22,.9,.32,1);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main{
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 60px rgba(34,31,28,0.06);
}

img{ display:block; max-width:100%; height:auto; }

h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

p{ margin: 0; }

a{ color: inherit; text-decoration: none; }

ul{ list-style:none; margin:0; padding:0; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
[data-reveal]{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ==========================================================================
   Eyebrow / labels
   ========================================================================== */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}
.eyebrow--light{ color: var(--orange-pale); }

/* ==========================================================================
   Answer-bubble signature element
   ========================================================================== */
.bubble{
  --size: 34px;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  border-radius: 50%;
  border: 1.5px solid var(--ink-faint);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bubble--active{
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.bubble--sm{ --size: 28px; font-size: 12px; }
.bubble--light{ border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.75); }
.bubble--active-light{
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.divider{
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 28px 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--primary{
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(225,92,41,0.55);
}
.btn--primary:active{ transform: scale(.97); }
.btn--block{ width: 100%; }
.btn__icon{ width: 18px; height: 18px; fill: currentColor; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero__media{
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero__media img{
  width: 100%;
  height: auto;
  display: block;
}
.hero__scrim{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(20,13,9,0) 0%, rgba(20,13,9,0.5) 32%, rgba(20,13,9,0.96) 100%);
}
.hero__content{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 24px 44px;
  color: #fff;
}
.hero__title{
  font-size: clamp(32px, 9vw, 40px);
  color: #fff;
  margin-bottom: 14px;
}
.hero__title span{ color: #F5A379; }
.hero__subtitle{
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 40ch;
  margin-bottom: 26px;
}

/* ==========================================================================
   Content blocks
   ========================================================================== */
.block{
  padding: 56px 24px;
  border-bottom: 1px solid var(--line);
}
.block--soft{ background: var(--bg-soft); }

.block__title{
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 22ch;
}

.block__media{
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 30px;
  aspect-ratio: 4 / 3;
}
.block__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modifier: show the full image uncropped (e.g. tall/portrait shots) */
.block__media--full{
  aspect-ratio: auto;
  background: var(--bg-soft);
}
.block__media--full img{
  height: auto;
  object-fit: contain;
}

.feature-list{
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.feature{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature__lead{
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature__text{
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Curso Intensivo — dark accent block */
.block--course{
  background: var(--ink);
  border-bottom-color: rgba(255,255,255,0.08);
}
.block__title--light{ color: #fff; }
.feature-list--light .feature__lead{ color: #fff; }
.feature-list--light .feature__text{ color: rgba(255,255,255,0.62); }

.price-card{
  margin-top: 36px;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--orange) 0%, var(--orange-deep) 100%);
  text-align: center;
  color: #fff;
}
.price-card__label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
}
.price-card__amount{
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-card__amount span{ font-size: 18px; font-weight: 500; opacity: 0.85; }
.price-card__note{
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 22px;
}
.price-card .btn--primary{
  background: #fff;
  color: var(--orange-deep);
  box-shadow: none;
}

/* ==========================================================================
   Emotional CTA banner
   ========================================================================== */
.cta-banner{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cta-banner__media{ position: absolute; inset: 0; }
.cta-banner__media img{ width:100%; height:100%; object-fit: cover; }
.cta-banner__scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,13,9,0.1) 0%, rgba(20,13,9,0.9) 100%);
}
.cta-banner__content{
  position: relative;
  padding: 40px 24px 48px;
  color: #fff;
}
.cta-banner__content h2{
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
  max-width: 20ch;
}
.cta-banner__content p{
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 38ch;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta{
  padding: 48px 24px 56px;
  text-align: center;
}
.final-cta__link{
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 20px 40px -16px rgba(34,31,28,0.25);
}
.final-cta__link img{ width: 100%; }
.btn--final{ font-size: 16px; padding: 17px 28px; }

.footer{
  padding: 26px 24px 100px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ==========================================================================
   Sticky WhatsApp CTA
   ========================================================================== */
.sticky-cta{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(225,92,41,0.6);
  z-index: 50;
  opacity: 0;
  transform: translateY(12px) scale(.9);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.sticky-cta.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-cta__icon{ width: 26px; height: 26px; fill: #fff; }

@media (prefers-reduced-motion: reduce){
  .sticky-cta{ transition: opacity .2s linear; transform:none; }
}
