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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───────────────────────────────────────────── */
/* NAV */
/* ───────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,243,231,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.logo span { color: var(--red); }

.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-socials a:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}

.nav-socials svg { width: 16px; height: 16px; }

a.nav-cta {
  display: none;
}

@media (min-width: 720px) {
  a.nav-cta { display: inline-flex; }
}

/* ───────────────────────────────────────────── */
/* BUTTONS */
/* ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 0 var(--red-d);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 var(--red-d);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--red-d);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
}

.btn-ghost:hover {
  background: var(--espresso);
  color: var(--cream);
}

.btn-dark-primary {
  background: var(--butter);
  color: var(--espresso);
  box-shadow: 0 6px 0 #C99A2E;
}

.btn-dark-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #C99A2E;
}

.btn-dark-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #C99A2E;
}

.btn-block { width: 100%; justify-content: center; }

/* ───────────────────────────────────────────── */
/* HERO */
/* ───────────────────────────────────────────── */

.hero {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-d);
  background: rgba(214,69,107,0.1);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--red);
  position: relative;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--espresso-2);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-note {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--taupe);
}

.hero-visual {
  position: relative;
}

.placeholder-img {
  background: linear-gradient(135deg, var(--cream-2), var(--white));
  border: 2px dashed var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--taupe);
  text-align: center;
  padding: 24px;
}

.placeholder-img svg { width: 48px; height: 48px; opacity: 0.5; }

.placeholder-img span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero-visual .placeholder-img {
  aspect-ratio: 4/5;
  width: 100%;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--butter);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(43,24,16,0.18);
  transform: rotate(-6deg);
  font-family: var(--font-display);
  line-height: 1.1;
}

.hero-badge strong {
  display: block;
  font-size: 1.6rem;
}

.hero-badge small {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
}
 
.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}
 
.carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: inline-block;
  flex-shrink: 0;
}
 
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(251,243,231,0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.carousel-btn:hover {
  background: var(--white);
}
 
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
 
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
 
.carousel-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(251,243,231,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
 
.carousel-dots .dot.active {
  background: var(--white);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
 
  .hero-visual {
    width: 100%;
    position: relative;
  }
 
  .carousel {
    aspect-ratio: 3/2;
    max-height: 420px;
  }
 
  .carousel-track {
    flex-wrap: nowrap;
  }
}

@media (max-width: 540px) {
  .hero-badge { left: 8px; bottom: -16px; padding: 12px 16px; }
  .hero-badge strong { font-size: 1.3rem; }
}

/* ───────────────────────────────────────────── */
/* SOCIAL PROOF STRIP */
/* ───────────────────────────────────────────── */

.proof-strip {
  background: var(--espresso);
  color: var(--cream);
  padding: 28px 0;
  margin-top: 40px;
}

.proof-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-item .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(251,243,231,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-item .icon-circle svg { width: 18px; height: 18px; }

.proof-item strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: block;
}

.proof-item small {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(251,243,231,0.6);
}

/* ───────────────────────────────────────────── */
/* SECTION HEADERS */
/* ───────────────────────────────────────────── */

.section { padding: 88px 0; }

.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red-d);
  margin-bottom: 14px;
  display: block;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--espresso-2);
  font-size: 1.05rem;
}

/* ───────────────────────────────────────────── */
/* RECIPE CARD — signature element                */
/* ───────────────────────────────────────────── */

.recipe-section { background: var(--cream-2); }

.recipe-card {
  background: var(--white);
  border-radius: 28px;
  border: 2px solid var(--espresso);
  overflow: hidden;
  box-shadow: 0 14px 0 rgba(43,24,16,0.08);
}

.recipe-head {
  background: var(--espresso);
  color: var(--cream);
  padding: 28px 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.recipe-head .tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--butter);
  display: block;
  margin-bottom: 6px;
}

.recipe-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
}

.recipe-body {
  padding: 36px;
  display: grid;
  gap: 36px;
}

@media (min-width: 860px) {
  .recipe-body {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.recipe-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.meta-item {
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 14px 16px;
}

.meta-item .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--taupe);
  display: block;
  margin-bottom: 6px;
}

.meta-item .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.ingredients-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--taupe);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.ingredients-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.ingredients-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
}

.ingredients-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.price-box {
  background: var(--cream-2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  align-self: start;
}

.price-box .was {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--taupe);
  text-decoration: line-through;
}

.price-box .now {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 4.2rem);
  line-height: 1;
  margin: 6px 0 4px;
}

.price-box .now sup {
  font-size: 1.6rem;
  vertical-align: super;
}

.price-box .now small {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--taupe);
}

.price-box .btn { width: 100%; margin-top: 20px; }

.price-box .secure {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.price-box .secure svg { width: 14px; height: 14px; }

/* ───────────────────────────────────────────── */
/* MODULES / WHAT YOU'LL LEARN */
/* ───────────────────────────────────────────── */

.modules-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.module-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(43,24,16,0.08);
}

.module-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--red-d);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 14px;
}

.module-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.module-card p {
  color: var(--espresso-2);
  font-size: 0.95rem;
}


/* ───────────────────────────────────────────── */
/* ABOUT */
/* ───────────────────────────────────────────── */

.about-section { background: var(--espresso); color: var(--cream); }

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.8fr 1.2fr; }
}

.about-section .placeholder-img {
  background: var(--espresso-2);
  border-color: rgba(251,243,231,0.2);
  color: rgba(251,243,231,0.5);
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.about-section .section-eyebrow { color: var(--butter); }

.about-section .section-head h2 { color: var(--cream); }

.about-section .section-head p { color: rgba(251,243,231,0.75); }

.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  border-left: 3px solid var(--butter);
  padding-left: 24px;
  margin: 28px 0;
  color: var(--cream);
}

.about-socials {
  display: flex;
  gap: 14px;
}

.about-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(251,243,231,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.about-socials a:hover {
  background: var(--butter);
  color: var(--espresso);
  transform: translateY(-2px);
}

.about-socials svg { width: 20px; height: 20px; }

/* ───────────────────────────────────────────── */
/* EMAIL CAPTURE */
/* ───────────────────────────────────────────── */

.email-section {
  background: var(--butter);
}

.email-card {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .email-card { grid-template-columns: 1.1fr 0.9fr; }
}

.email-section .section-eyebrow { color: var(--red-d); }

.email-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.email-section p {
  font-size: 1.05rem;
  color: var(--espresso-2);
  margin-bottom: 0;
}

.email-perks {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.email-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
}

.email-perks svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--red);
}

.email-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  border: 2px solid var(--espresso);
}

.email-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.email-form-wrap .small {
  font-size: 0.88rem;
  color: var(--taupe);
  margin-bottom: 22px;
  display: block;
}

.field-group {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.field-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--cream);
}

.field-group input:focus {
  outline: none;
  border-color: var(--red);
}

.email-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--taupe);
  margin-top: 14px;
  text-align: center;
}

/* ───────────────────────────────────────────── */
/* FAQ */
/* ───────────────────────────────────────────── */

.faq-list { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .plus {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary .plus { transform: rotate(45deg); }

.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: var(--espresso-2);
  font-size: 0.98rem;
}

/* ───────────────────────────────────────────── */
/* FINAL CTA */
/* ───────────────────────────────────────────── */

.final-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.final-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 32px;
}

.final-cta .btn-primary {
  background: var(--butter);
  color: var(--espresso);
  box-shadow: 0 6px 0 #C99A2E;
}

.final-cta .btn-primary:hover { box-shadow: 0 8px 0 #C99A2E; }
.final-cta .btn-primary:active { box-shadow: 0 2px 0 #C99A2E; }

/* ───────────────────────────────────────────── */
/* FOOTER */
/* ───────────────────────────────────────────── */

footer {
  background: var(--espresso);
  color: rgba(251,243,231,0.6);
  padding: 40px 0;
  text-align: center;
  font-size: 0.88rem;
}

footer .footer-logo {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

footer .footer-logo span { color: var(--red); }

footer .footer-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 18px 0;
}

footer .footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(251,243,231,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

footer .footer-socials a:hover { background: var(--red); border-color: var(--red); }

footer .footer-socials svg { width: 16px; height: 16px; }

/* ───────────────────────────────────────────── */
/* BONUS PDF — vende lo que aprendas              */
/* ───────────────────────────────────────────── */

.bonus-pdf-card {
  display: grid;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--espresso);
  border-radius: 28px;
  padding: 40px;
}

@media (min-width: 800px) {
  .bonus-pdf-card {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 48px;
  }
}

.bonus-pdf-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.bonus-pdf-icon {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: var(--cream-2);
  border: 2px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.bonus-pdf-icon svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.bonus-pdf-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--taupe);
  background: var(--cream-2);
  padding: 6px 14px;
  border-radius: 100px;
}

.bonus-pdf-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.bonus-pdf-content p {
  color: var(--espresso-2);
  font-size: 1rem;
  margin-bottom: 22px;
}

.bonus-pdf-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.bonus-pdf-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--espresso-2);
}

.bonus-pdf-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

/* ───────────────────────────────────────────── */
/* MISC */
/* ───────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
