/* ================================================================
   MÉTODO ARRA'S — ESTILOS COMPLETOS
   ================================================================ */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #162236;
  --navy-light: #1e3050;
  --gold:       #c9a84c;
  --gold-lt:    #e0c068;
  --gold-dk:    #a07830;
  --white:      #f5f0e8;
  --gray:       #8a9ab0;
  --gray-lt:    #c5cdd8;
  --green:      #2ecc71;
  --red:        #e74c3c;
  --ff-disp:    'Cormorant Garamond', serif;
  --ff-body:    'Jost', sans-serif;
  --rad:        12px;
  --tr:         0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--navy); color: var(--white); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--ff-body); }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.full-w { width: 100%; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-in       { opacity: 0; animation: fadeUp .8s ease forwards; }
.delay-1       { animation-delay: .15s; }
.delay-2       { animation-delay: .3s; }
.delay-3       { animation-delay: .45s; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block; padding: .9rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy); font-weight: 600; font-size: .95rem;
  border-radius: 50px; border: none; cursor: pointer; transition: var(--tr);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }
.btn-secondary {
  display: inline-block; padding: .9rem 2.2rem;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(201,168,76,.5); border-radius: 50px;
  font-size: .95rem; cursor: pointer; transition: var(--tr);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Section header ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,.3); padding: .3rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-header h2 { font-family: var(--ff-disp); font-size: clamp(2rem,4vw,3rem); font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.section-header h2 em { color: var(--gold); font-style: italic; }
.section-header p { color: var(--gray); max-width: 550px; margin: 0 auto; }

/* ================================================================
   HEADER
   ================================================================ */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  background: rgba(13,27,42,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.15); transition: var(--tr);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header-logo img { height: 50px; width: auto; border-radius: 50%; }
#main-nav ul { display: flex; gap: 2rem; }
#main-nav a { font-size: .88rem; color: var(--gray-lt); transition: var(--tr); position: relative; }
#main-nav a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--gold); transition:var(--tr); }
#main-nav a:hover { color: var(--white); }
#main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn-login-header {
  display: inline-block; padding: .5rem 1.2rem;
  background: transparent; border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); border-radius: 50px; font-size: .85rem;
  cursor: pointer; transition: var(--tr); white-space: nowrap;
}
.btn-login-header:hover { background: var(--gold); color: var(--navy); }
.cart-btn {
  background: transparent; border: none; color: var(--white);
  font-size: 1.2rem; cursor: pointer; position: relative; padding: .5rem;
}
.cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--navy);
  font-size: .62rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; background: transparent; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ================================================================
   HERO — SPLIT
   ================================================================ */
.hero {
  min-height: 100vh; padding: 7rem 0 3rem;
  display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 0% 50%, rgba(201,168,76,.07), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(22,34,54,.5), transparent 70%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1200px; width: 100%;
  padding: 0 3rem; position: relative; z-index: 1; flex: 1;
}
/* LEFT */
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }
.hero-logo { width: 88px; height: 88px; border-radius: 50%; margin-bottom: 1.5rem; border: 2px solid rgba(201,168,76,.4); box-shadow: 0 0 28px rgba(201,168,76,.15); }
.hero-title { font-family: var(--ff-disp); font-size: clamp(2.6rem,5vw,4.8rem); font-weight: 300; line-height: 1.05; margin-bottom: 1.25rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle { font-size: clamp(.9rem,1.4vw,1.05rem); color: var(--gray-lt); line-height: 1.75; font-weight: 300; margin-bottom: 2rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust span { font-size: .78rem; color: var(--gray); }
/* RIGHT */
.hero-right { display: flex; flex-direction: column; gap: .75rem; }
.video-frame {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  position: relative;
}
.video-frame video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; background: var(--navy-mid); }
.video-caption { font-size: .76rem; color: var(--gray); text-align: center; letter-spacing: .04em; }
.hero-scroll { display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--gray); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 2.5rem; animation: bounce 2s infinite; }
.hero-scroll-arrow { font-size: 1.1rem; color: var(--gold); }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ================================================================
   BENEFITS
   ================================================================ */
.benefits { padding: 5rem 0; background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,.1); border-bottom: 1px solid rgba(201,168,76,.1); }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.benefit-card { text-align: center; padding: 2rem 1.5rem; }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; }
.benefit-card h4 { font-size: 1.05rem; font-weight: 500; color: var(--gold); margin-bottom: .75rem; }
.benefit-card p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ================================================================
   COURSES
   ================================================================ */
.courses-section { padding: 6rem 0; }
.courses-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.course-card { background: var(--navy-mid); border-radius: var(--rad); overflow: hidden; border: 1px solid rgba(201,168,76,.12); transition: var(--tr); }
.course-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.3); box-shadow: 0 16px 50px rgba(0,0,0,.3); }
.course-img { position: relative; height: 160px; background: linear-gradient(135deg,var(--navy-light),var(--navy)); display: flex; align-items: center; justify-content: center; }
.course-img-placeholder { font-size: 3.5rem; }
.course-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--navy); font-size: .7rem; font-weight: 700; padding: .25rem .75rem; border-radius: 50px; text-transform: uppercase; }
.course-body { padding: 1.5rem; }
.course-body h3 { font-family: var(--ff-disp); font-size: 1.3rem; font-weight: 400; margin-bottom: .75rem; }
.course-body p { font-size: .87rem; color: var(--gray); margin-bottom: 1rem; }
.course-features { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.5rem; }
.course-features li { font-size: .82rem; color: var(--gray-lt); }
.course-footer { display: flex; align-items: center; justify-content: space-between; }
.course-price { font-family: var(--ff-disp); font-size: 1.8rem; color: var(--gold); font-weight: 300; }
.btn-buy { padding: .6rem 1.5rem; background: linear-gradient(135deg,var(--gold),var(--gold-dk)); color: var(--navy); border: none; border-radius: 50px; font-weight: 600; font-size: .85rem; cursor: pointer; transition: var(--tr); }
.btn-buy:hover { transform: scale(1.05); }

/* ================================================================
   COMBOS
   ================================================================ */
.combos-section { padding: 6rem 0; background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,.1); border-bottom: 1px solid rgba(201,168,76,.1); }
.combos-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.combo-card { background: var(--navy-light); border-radius: var(--rad); padding: 2.5rem; border: 1px solid rgba(201,168,76,.15); position: relative; transition: var(--tr); }
.combo-card:hover { border-color: rgba(201,168,76,.35); }
.combo-featured { border-color: rgba(201,168,76,.4); background: linear-gradient(145deg,var(--navy-light),rgba(201,168,76,.06)); }
.combo-top-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); padding: .3rem 1.2rem; border-radius: 50px; font-size: .72rem; font-weight: 700; white-space: nowrap; }
.combo-header { text-align: center; margin-bottom: 1.5rem; }
.combo-icon { font-size: 2rem; }
.combo-header h3 { font-family: var(--ff-disp); font-size: 1.5rem; font-weight: 400; margin: .5rem 0 .25rem; }
.combo-header p { font-size: .85rem; color: var(--gray); }
.combo-pricing { text-align: center; margin-bottom: 1.5rem; }
.combo-original { display: block; font-size: .9rem; color: var(--gray); text-decoration: line-through; }
.combo-price { display: block; font-family: var(--ff-disp); font-size: 2.5rem; color: var(--gold); font-weight: 300; }
.combo-savings { display: inline-block; background: rgba(201,168,76,.15); color: var(--gold-lt); font-size: .72rem; padding: .25rem .75rem; border-radius: 50px; margin-top: .25rem; }
.combo-list { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.combo-list li { font-size: .87rem; color: var(--gray-lt); }
.inline-upsell { margin-top: 1rem; background: rgba(201,168,76,.08); border: 1px dashed rgba(201,168,76,.3); border-radius: 8px; padding: .75rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; font-size: .82rem; color: var(--gray-lt); }
.inline-upsell button { background: var(--gold); color: var(--navy); border: none; border-radius: 50px; font-size: .75rem; font-weight: 600; padding: .3rem .9rem; cursor: pointer; transition: var(--tr); white-space: nowrap; }
.inline-upsell button:hover { background: var(--gold-lt); }

/* ================================================================
   MEMBERSHIP
   ================================================================ */
.membership-section { padding: 6rem 0; }
.membership-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.membership-card { background: var(--navy-mid); border: 1px solid rgba(201,168,76,.15); border-radius: var(--rad); padding: 2.5rem; position: relative; transition: var(--tr); }
.membership-card:hover { transform: translateY(-4px); }
.mem-featured { border-color: rgba(201,168,76,.5); background: linear-gradient(160deg,var(--navy-mid),rgba(201,168,76,.06)); transform: scale(1.03); }
.mem-featured:hover { transform: scale(1.03) translateY(-4px); }
.mem-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); padding: .3rem 1.2rem; border-radius: 50px; font-size: .72rem; font-weight: 700; }
.mem-level { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.mem-price { font-family: var(--ff-disp); font-size: 3rem; font-weight: 300; }
.mem-price span { font-size: 1rem; font-family: var(--ff-body); color: var(--gray); }
.mem-features { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0 2rem; }
.mem-features li { font-size: .87rem; color: var(--gray-lt); }
.mem-features li.off { color: var(--gray); opacity: .5; }
.btn-mem { width: 100%; padding: .85rem; background: linear-gradient(135deg,var(--gold),var(--gold-dk)); color: var(--navy); border: none; border-radius: 50px; font-weight: 600; font-size: .9rem; cursor: pointer; transition: var(--tr); }
.btn-mem:hover { background: linear-gradient(135deg,var(--gold-lt),var(--gold)); transform: translateY(-2px); }
.mem-note { text-align: center; color: var(--gray); font-size: .82rem; margin-top: 2rem; line-height: 1.7; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { padding: 6rem 0; background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,.1); border-bottom: 1px solid rgba(201,168,76,.1); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card { background: var(--navy-light); border: 1px solid rgba(201,168,76,.12); border-radius: var(--rad); padding: 2rem; transition: var(--tr); }
.testimonial-card:hover { border-color: rgba(201,168,76,.3); }
.test-stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial-card p { font-size: .9rem; color: var(--gray-lt); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: .75rem; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-dk)); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.test-author strong { display: block; font-size: .9rem; }
.test-author span { font-size: .78rem; color: var(--gray); }

/* ================================================================
   ABOUT
   ================================================================ */
.about-section { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: center; }
.about-logo-col { text-align: center; }
.about-logo { width: 220px; height: 220px; border-radius: 50%; margin: 0 auto; border: 2px solid rgba(201,168,76,.4); box-shadow: 0 0 60px rgba(201,168,76,.15); }
.about-deco { width: 2px; height: 80px; background: linear-gradient(to bottom,var(--gold),transparent); margin: 2rem auto 0; }
.about-text-col h2 { font-family: var(--ff-disp); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 300; margin: .75rem 0 1.5rem; }
.about-text-col h2 em { color: var(--gold); font-style: italic; }
.about-text-col p { font-size: .95rem; color: var(--gray-lt); line-height: 1.8; margin-bottom: 1rem; }
.about-stats { display: flex; gap: 3rem; margin-top: 2.5rem; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--ff-disp); font-size: 2.5rem; color: var(--gold); font-weight: 300; }
.stat-label { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section { padding: 6rem 0; background: var(--navy-mid); border-top: 1px solid rgba(201,168,76,.1); }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; padding-top: 1rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; }
.contact-item strong { display: block; font-size: .85rem; color: var(--gold); margin-bottom: .25rem; }
.contact-item a, .contact-item span { font-size: .9rem; color: var(--gray-lt); }
.contact-item a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .78rem; color: var(--gray); letter-spacing: .05em; text-transform: uppercase; }
.form-group input, .form-group textarea {
  background: var(--navy-light); border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px; padding: .85rem 1rem; color: var(--white); font-size: .9rem; transition: var(--tr);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { padding: 4rem 0 2rem; background: var(--navy); border-top: 1px solid rgba(201,168,76,.15); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; color: var(--gray); line-height: 1.6; }
.footer-links h4, .footer-payments h4 { font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .85rem; color: var(--gray); transition: var(--tr); }
.footer-links a:hover { color: var(--white); }
.pay-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: .75rem; }
.pay-badge { background: var(--navy-light); border: 1px solid rgba(201,168,76,.2); padding: .4rem .9rem; border-radius: 50px; font-size: .78rem; color: var(--gray-lt); }
.footer-payments p { font-size: .78rem; color: var(--gray); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: .78rem; color: var(--gray); }

/* ================================================================
   CART SIDEBAR
   ================================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; opacity: 0; pointer-events: none; transition: var(--tr); }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 400px; max-width: 100vw; height: 100vh; background: var(--navy-mid); border-left: 1px solid rgba(201,168,76,.2); z-index: 201; display: flex; flex-direction: column; transition: .4s cubic-bezier(.4,0,.2,1); }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid rgba(201,168,76,.15); }
.cart-header h3 { font-family: var(--ff-disp); font-size: 1.4rem; font-weight: 400; }
.cart-close { background: transparent; border: none; color: var(--gray); font-size: 1.3rem; cursor: pointer; transition: var(--tr); }
.cart-close:hover { color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { color: var(--gray); text-align: center; margin-top: 2rem; font-size: .9rem; }
.cart-item { display: flex; align-items: center; background: var(--navy-light); padding: 1rem; border-radius: 8px; gap: 1rem; }
.cart-item-name { font-size: .88rem; flex: 1; }
.cart-item-price { font-size: .88rem; color: var(--gold); white-space: nowrap; }
.cart-item-remove { background: transparent; border: none; color: var(--gray); cursor: pointer; font-size: 1rem; transition: var(--tr); }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(201,168,76,.15); display: flex; flex-direction: column; gap: 1rem; }
.cart-total { display: flex; justify-content: space-between; font-size: 1rem; }
#cart-total-val { font-family: var(--ff-disp); font-size: 1.5rem; color: var(--gold); }
.cart-upsell { background: rgba(201,168,76,.08); border: 1px dashed rgba(201,168,76,.35); border-radius: 8px; padding: 1rem; }
.cart-upsell p { font-size: .82rem; color: var(--gray-lt); margin-bottom: .75rem; }
.btn-upsell { width: 100%; padding: .55rem; background: var(--gold); color: var(--navy); border: none; border-radius: 50px; font-size: .82rem; font-weight: 600; cursor: pointer; }
.btn-checkout { width: 100%; padding: 1rem; background: linear-gradient(135deg,var(--gold),var(--gold-dk)); color: var(--navy); border: none; border-radius: 50px; font-weight: 600; font-size: .95rem; cursor: pointer; transition: var(--tr); }
.btn-checkout:hover { background: linear-gradient(135deg,var(--gold-lt),var(--gold)); }

/* ================================================================
   MODAL (login/registro/suscripción)
   ================================================================ */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 300; align-items: center; justify-content: center; }
.modal.open { display: flex; }
.modal-box { background: var(--navy-mid); border: 1px solid rgba(201,168,76,.25); border-radius: 16px; padding: 2.5rem; width: 100%; max-width: 430px; position: relative; max-height: 94vh; overflow-y: auto; animation: fadeUp .3s ease; }
.modal-x { position: absolute; top: 1rem; right: 1rem; background: transparent; border: none; color: var(--gray); font-size: 1.3rem; cursor: pointer; transition: var(--tr); }
.modal-x:hover { color: var(--white); }
.modal-logo { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 1.25rem; border: 2px solid rgba(201,168,76,.35); }
.modal-box h3 { font-family: var(--ff-disp); font-size: 1.6rem; font-weight: 300; text-align: center; margin-bottom: 1.5rem; }
.modal-box h3 em { color: var(--gold); font-style: italic; }
.modal-switch { text-align: center; font-size: .82rem; color: var(--gray); margin-top: 1rem; }
.modal-switch a { color: var(--gold); cursor: pointer; }
.modal-switch a:hover { text-decoration: underline; }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.field-label { font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .35rem; display: block; }
.field-input {
  width: 100%; padding: .85rem 1rem;
  background: var(--navy-light); border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px; color: var(--white); font-size: .9rem; transition: var(--tr);
}
.field-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.btn-modal-submit { width: 100%; padding: .95rem; background: linear-gradient(135deg,var(--gold),var(--gold-dk)); color: var(--navy); border: none; border-radius: 50px; font-weight: 700; font-size: .95rem; cursor: pointer; transition: var(--tr); }
.btn-modal-submit:hover { opacity: .9; transform: translateY(-1px); }
.msg-error { color: var(--red); font-size: .82rem; padding: .5rem .75rem; background: rgba(231,76,60,.08); border-radius: 6px; border-left: 3px solid var(--red); display: none; }
.msg-ok { color: var(--green); font-size: .85rem; padding: .6rem .75rem; background: rgba(46,204,113,.08); border-radius: 6px; border-left: 3px solid var(--green); text-align: center; display: none; }
/* OTP input */
.otp-hint { font-size: .85rem; color: var(--gray-lt); text-align: center; margin-bottom: 1rem; line-height: 1.6; }
.otp-input { text-align: center; letter-spacing: .4em; font-size: 1.5rem; font-weight: 700; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-logo-col { display: flex; align-items: center; gap: 2rem; }
  .about-deco { display: none; }
}
@media (max-width: 768px) {
  #main-nav { display: none; position: fixed; top: 78px; left: 0; right: 0; background: var(--navy-mid); padding: 2rem; border-bottom: 1px solid rgba(201,168,76,.2); z-index: 99; }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 1.5rem; }
  .hamburger { display: block; }
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.5rem; text-align: center; }
  .hero-left { align-items: center; }
  .hero-subtitle, .hero-title { text-align: center; }
  .hero-trust { justify-content: center; }
  .courses-grid, .combos-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mem-featured { transform: none; }
  .mem-featured:hover { transform: translateY(-4px); }
  .about-logo-col { flex-direction: column; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .inline-upsell { flex-direction: column; text-align: center; }
}

/* ================================================================
   BANNERS LATERALES — Cursos, Combos, Membresía
   Para QUITAR los banners: borrar desde aquí hasta el final del archivo
   y quitar los div con class "side-banner" del index.html
   ================================================================ */

.courses-section,
.combos-section,
.membership-section {
  position: relative;
}

/* Banner base — tamaño MEDIO, centrado en la sección */
.side-banner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 162px;
  height: 440px;
  z-index: 10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55);
  border: 1px solid rgba(201,168,76,0.35);
}

.side-banner-left  { left: 6px; }
.side-banner-right { right: 6px; }

.side-banner-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagen de fondo */
.side-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay */
.side-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.72) 60%,
    rgba(201,168,76,0.18) 100%
  );
}

/* Contenido */
.side-banner-content {
  position: relative;
  z-index: 2;
  padding: 1.4rem .9rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.side-banner-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1.4;
  margin: 0;
}

.side-banner-text em {
  color: #c9a84c;
  font-style: italic;
}

.side-banner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  text-align: left;
}

.side-banner-list li {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  color: #c5cdd8;
  line-height: 1.4;
}

.side-banner-btn {
  display: block;
  padding: .65rem .5rem;
  background: linear-gradient(135deg, #c9a84c, #a07830);
  color: #0d1b2a;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  text-align: center;
  transition: .2s;
  margin-top: .35rem;
  border: none;
  cursor: pointer;
  width: 100%;
}

.side-banner-btn:hover {
  opacity: .9;
  transform: translateY(-2px);
}

/* Separador decorativo */
.side-banner-divider {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.4);
  margin: 0 auto;
}

/* Ocultar en pantallas menores a 1400px */
@media (max-width: 1400px) {
  .side-banner { display: none; }
}

/* ================================================================
   IMÁGENES DE CURSOS, COMBOS Y MEMBRESÍA
   ================================================================ */

/* Imagen de fondo en tarjetas de cursos */
.course-img-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy-light);
  position: relative;
}
/* Si la imagen no carga, muestra fondo oscuro */
.course-img-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.2), rgba(13,27,42,0.6));
}

/* Combo con imagen de fondo */
.combo-img-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.combo-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(22,34,54,0.92), rgba(13,27,42,0.88));
  z-index: 0;
}
.combo-card-content {
  position: relative;
  z-index: 1;
}
