/* ===================================================
   Angela García · Conferencia · styles.css?v=20260624
   =================================================== */

/* === VARIABLES === */
:root {
  --bg:           #F3EAE0;
  --bg-2:         #EAE0D3;
  --bg-3:         #FFFFFF;
  --ink:          #1C1810;
  --ink-soft:     #3A3028;
  --ink-mute:     #7A6060;
  --accent:       #C49068;
  --accent-dark:  #8A5E35;
  --accent-light: #FBF5EF;
  --accent-2:     #2d7a50;
  --accent-2-lt:  #EAF4EE;
  --line:         rgba(28,24,16,0.10);
  --line-solid:   #DDD5C8;
  --nav-h:        68px;
  --topbar-h:     44px;
  --radius:       12px;
  --shadow-sm:    0 2px 8px rgba(28,24,16,0.07);
  --shadow-md:    0 8px 32px rgba(28,24,16,0.10);
  --shadow-lg:    0 20px 60px rgba(28,24,16,0.14);
  --ease:         cubic-bezier(0.4,0,0.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 600; text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 600; text-wrap: balance; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 600; }
em { font-style: italic; color: var(--accent); }
p { margin: 0; }

/* === LAYOUT === */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}
.section-alt { background: var(--bg-2); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 1.8em;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: #2d7a50; color: #fff; }
.btn-primary:hover {
  background: #1f5e3c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,122,80,0.35);
}
.btn-lg { padding: 1.05em 2.4em; font-size: 0.95rem; }
.btn-nav {
  background: #2d7a50;
  color: #fff;
  padding: 0.6em 1.3em;
  font-size: 0.8rem;
}
.btn-nav:hover { background: #1f5e3c; color: #fff; }

/* === SECTION LABELS === */
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1.5rem; }

/* === TOP BAR === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10010;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.75rem, 1.3vw, 0.85rem);
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
  min-height: var(--topbar-h);
}
.topbar-icon { font-size: 1rem; flex-shrink: 0; }
.topbar-text { flex: 1 1 auto; }
.topbar-cta {
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.22em 0.9em;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 180ms var(--ease);
  flex-shrink: 0;
}
.topbar-cta:hover { background: rgba(255,255,255,0.32); color: #fff; }

/* === NAV === */
.nav {
  position: sticky;
  top: var(--topbar-h);
  z-index: 10002;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
  transition: box-shadow 220ms var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}
.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.nav-brand-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* === HERO BANNER === */
.hero-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  min-height: 92vh;
  background: #C49068;
  overflow: hidden;
  padding-inline: 4vw;
}
.hero-banner-img {
  display: block;
  height: 88vh;
  width: auto;
  max-width: 52vw;
  object-fit: contain;
  flex-shrink: 0;
}
.hero-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-shrink: 0;
}

/* Countdown sobre fondo caramelo */
.countdown {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cd-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}
.countdown-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  padding-bottom: 0.55rem;
}

@media (max-width: 767px) {
  .hero-banner { flex-direction: column; min-height: auto; }
  .hero-banner-img { height: auto; width: 100%; max-width: 100%; }
  .hero-banner-content { padding: 2rem 1.5rem 2.5rem; width: 100%; }
  .hero-banner-content .btn { width: 100%; justify-content: center; }
}
@media (max-width: 479px) {
  .cd-num { font-size: 1.7rem; }
  .countdown-sep { font-size: 1.5rem; }
}

/* === PHOTO STRIP === */
.photo-strip {
  padding-block: 2rem 3rem;
  background: var(--bg-2);
}
.photo-strip-inner {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}
.photo-strip-card {
  flex: 1;
  max-width: 268px;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 250ms var(--ease), transform 250ms var(--ease);
}
.photo-strip-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px) scale(1.01);
}
.photo-strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s var(--ease);
}
.photo-strip-card:hover img { transform: scale(1.04); }

@media (max-width: 860px) {
  .photo-strip-card { max-width: 200px; }
}
@media (max-width: 767px) {
  .photo-strip { padding-block: 1.25rem 1.75rem; }
  .photo-strip-inner {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 1.25rem;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .photo-strip-inner::-webkit-scrollbar { display: none; }
  .photo-strip-card {
    flex-shrink: 0;
    flex: none;
    width: 70vw;
    max-width: 260px;
    scroll-snap-align: center;
  }
  .photo-strip-card:hover { transform: none; }
}

/* === PROBLEM === */
.problem { padding-block: 5rem; }
.problem .container { max-width: 820px; }
.problem .section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  max-width: 32ch;
  margin-bottom: 1.25rem;
}
.problem-lead {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 1.25rem;
  max-width: 68ch;
}
.problem-sublead {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-3);
  border-radius: 8px;
  border-left: 3px solid var(--accent-2);
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}
.checklist li::before {
  content: '✓';
  color: var(--accent-2);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* === CURRICULUM === */
.curriculum { padding-block: 5rem; }
.curriculum .section-title { margin-bottom: 2.75rem; }
.curriculum-flat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .curriculum-flat { grid-template-columns: 1fr 1fr; }
}
.curriculum-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: var(--accent-light);
  border: 1px solid rgba(196,144,104,0.18);
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.curriculum-item:hover {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 3px 12px rgba(138,94,53,0.10);
}
.item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 2.2rem;
  text-align: center;
  padding-top: 0.05rem;
  flex-shrink: 0;
  color: var(--accent);
}
.item-body { flex: 1; }
.item-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.item-desc {
  font-size: 0.83rem;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* === SPEAKER === */
.speaker { padding-block: 5rem; }
.speaker-solo {
  max-width: 720px;
  margin: 1.25rem auto 0;
}
.speaker-solo p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}
.speaker-solo p + p { margin-top: 0.85rem; }
.speaker-name {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.speaker-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.1rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* === VIDEO SECTION === */
.video-section {
  padding-block: 5rem;
  background: var(--bg);
}
.video-section .section-label,
.video-section .section-title { text-align: center; }
.video-section .section-title { margin-bottom: 2rem; }
.video-wrap {
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  max-height: 72vh;
  object-fit: contain;
}

/* === CHECKOUT === */
.checkout { padding-block: 5rem; }
.checkout .section-title { margin-bottom: 0.75rem; }

.checkout-intro {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
  max-width: 62ch;
}

/* Lead form */
.checkout-form-wrap {
  margin-top: 2.5rem;
  animation: fadeUp 0.35s var(--ease) both;
}
.checkout-form-hint {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  text-align: center;
}
.checkout-submit-btn {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
}
.attendee-block {
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.attendee-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.lead-form {
  margin-bottom: 0;
}
.lead-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .lead-form-row { grid-template-columns: 1fr 1fr 1fr; }
}
.lead-form-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-mute);
  line-height: 1.4;
  text-align: center;
}

/* Form elements */
.form-group { display: flex; flex-direction: column; gap: 0.38rem; }
label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.required { color: var(--accent); }
input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 0.72rem 0.95rem;
  background: var(--bg);
  border: 1.5px solid var(--line-solid);
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--ink);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
input:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}
input.is-invalid { border-color: #C0392B; }
.field-error {
  font-size: 0.76rem;
  color: #C0392B;
  font-weight: 500;
  min-height: 1em;
  line-height: 1.3;
}

/* 3 Pricing cards */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .pricing-cards { grid-template-columns: 1fr 1fr 1fr; }
}

.pricing-card {
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1.5px solid var(--line-solid);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-5px);
}
.pc-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 1.1em;
  border-radius: 40px;
  white-space: nowrap;
}
.pc-qty {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.pc-who {
  font-size: 0.76rem;
  color: var(--ink-mute);
  font-style: italic;
}
.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.pc-price small {
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--ink-mute);
}
.pc-includes {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  width: 100%;
  margin: 0.25rem 0;
}
.pc-includes li {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.btn-pay-link {
  width: 100%;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: auto;
  padding-block: 0.9em;
}

.checkout-trust {
  font-size: 0.8rem;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.5;
}

/* === FAQ === */
.faq { padding-block: 5rem; text-align: center; }
.faq .section-label { display: block; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
  max-width: 800px;
  margin-inline: auto;
  text-align: left;
}
.faq-item {
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 180ms var(--ease);
}
.faq-item[open] { border-color: var(--accent); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 180ms var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 240ms var(--ease);
  line-height: 1;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--accent); }
.faq-a {
  padding: 0 1.4rem 1.2rem;
  border-top: 1px solid var(--line);
}
.faq-a p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding-block: 3rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}
.footer-cta-block { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer-support-text { font-size: 0.93rem; color: rgba(255,255,255,0.55); }
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  padding: 0.7em 1.4em;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.footer-ig-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(188,24,136,0.4);
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.7em 1.6em;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.footer-wa-btn:hover {
  background: #1EBE5D;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.footer-divider { width: 100%; max-width: 380px; height: 1px; background: rgba(255,255,255,0.1); }
.footer-legal { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; align-items: center; gap: 0.65rem; font-size: 0.8rem; }
.footer-links a { color: rgba(255,255,255,0.52); transition: color 180ms; }
.footer-links a:hover { color: #F9F0E3; }
.footer-links span { color: rgba(255,255,255,0.25); }

/* === REVEAL ANIMATIONS === */
.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 580ms var(--ease), transform 580ms var(--ease);
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-split] { opacity: 1; transform: none; }

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .speaker-stats { gap: 1.25rem; }
  .nav-brand-tag { display: none; }
  .pricing-card { transform: none !important; }
  .pc-featured { order: -1; }
}
@media (max-width: 767px) {
  .topbar { padding: 0.45rem 1rem; font-size: 0.72rem; min-height: 0; flex-wrap: nowrap; }
  .topbar-cta { display: none; }
  .topbar-icon { font-size: 0.85rem; }
}
@media (max-width: 479px) {
  .topbar-text { font-size: 0.68rem; }
  .lead-form { padding: 1.25rem; }
  .video-wrap { border-radius: 8px; }
}
