/* ================================================================
   landing.css — Admissions landing page styles
   Brand: Navy #1F2E74  ·  Gold #F2B705
   ================================================================ */

:root {
  --navy: #1F2E74;
  --navy-dark: #151F54;
  --navy-light: #2A3D8F;
  --gold: #F2B705;
  --gold-hover: #D9A004;
  --gold-light: #FDF0C4;
}

/* ── Sticky Header ── */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow .2s;
}
.lp-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-header-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
}
.lp-header-logo img {
  height: 36px;
  width: auto;
}
.lp-header-logo span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .03em;
}
@media (max-width: 480px) {
  .lp-header-logo span { display: none; }
}
.lp-btn-header {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .5rem 1.125rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: .5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
.lp-btn-header:hover { background: var(--gold-hover); }
.lp-btn-header:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Hero ── */
.lp-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #0F1740 100%);
  padding: 7rem 1.25rem 3.5rem;
  color: #fff;
  overflow: hidden;
}
.lp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 960px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.lp-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.lp-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.lp-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 540px;
}
@media (max-width: 960px) {
  .lp-hero-sub { margin-left: auto; margin-right: auto; }
}
.lp-hero-ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
@media (max-width: 960px) {
  .lp-hero-ctas { justify-content: center; }
}
.lp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: .625rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.lp-btn-gold:hover { background: var(--gold-hover); }
.lp-btn-gold:active { transform: scale(.98); }
.lp-btn-gold:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: .625rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.lp-btn-outline:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06);
}
.lp-btn-outline:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.lp-micro {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
}
@media (max-width: 960px) {
  .lp-micro { text-align: center; }
}

/* Hero stats row */
.lp-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 960px) {
  .lp-stats { justify-content: center; }
}
@media (max-width: 480px) {
  .lp-stats { gap: 1rem; flex-wrap: wrap; }
}
.lp-stat {
  text-align: center;
}
.lp-stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.lp-stat-label {
  font-size: .6875rem;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Hero roulette card */
.lp-roulette-card {
  background: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
}
.lp-roulette-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .5rem;
}
.lp-roulette-card .lp-rc-sub {
  font-size: .8125rem;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.lp-roulette-card .lp-btn-gold {
  width: 100%;
  justify-content: center;
}
.lp-rc-highlight {
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--navy);
}
.lp-rc-btn-icon { font-size: 1.125rem; }
@media (max-width: 960px) {
  .lp-roulette-card { max-width: 420px; margin: 2rem auto 0; }
}

/* Badge ribbon */
.lp-rc-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .3125rem .875rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

/* Decorative wheel */
.lp-rc-wheel-wrap {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 1.5rem;
}
.lp-rc-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid var(--navy);
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.lp-rc-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: visible;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.15));
}
.lp-rc-wheel-spin {
  transform-origin: 100px 100px;
  animation: lp-wheel-spin 18s linear infinite;
}
.lp-rc-label {
  font-size: 11px;
  font-weight: 700;
  fill: #fff;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}
.lp-rc-label-gratis {
  font-size: 13px;
  font-weight: 700;
  fill: var(--navy);
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}
@keyframes lp-wheel-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Countdown inside card */
.lp-rc-countdown {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* ── Bloqueo reintento (overlay) ── */
.lp-bloqueo {
  max-width: 520px;
  margin: 6rem auto 3rem;
  padding: 2.5rem 2rem;
  background: var(--navy);
  border-radius: 1rem;
  text-align: center;
  color: #fff;
}
.lp-bloqueo h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 .5rem;
}
.lp-bloqueo p { color: rgba(255,255,255,.7); font-size: .875rem; }
.lp-bloqueo a {
  display: inline-flex;
  align-items: center;
  padding: .625rem 1.25rem;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  font-size: .875rem;
  border-radius: .5rem;
  text-decoration: none;
  margin-top: 1rem;
}
.lp-bloqueo a:hover { background: #f3f4f6; }

/* ── Pricing cards ── */
.lp-pricing {
  padding: 4rem 1.25rem;
  background: #f8f9fb;
}
.lp-pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.lp-section-title {
  text-align: center;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}
.lp-section-sub {
  text-align: center;
  color: #6b7280;
  font-size: .9375rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.lp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .lp-pricing-grid { grid-template-columns: 1fr; }
}
.lp-price-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.lp-price-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.lp-price-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .25rem .75rem;
  border-radius: 1rem;
}
.lp-price-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1.25rem;
}
.lp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .5rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: .875rem;
}
.lp-price-row:last-child { border-bottom: none; }
.lp-price-label { color: #6b7280; }
.lp-price-val {
  font-weight: 600;
  color: #111827;
}
.lp-price-struck {
  text-decoration: line-through;
  color: #9ca3af;
  font-weight: 400;
  margin-right: .375rem;
  font-size: .8125rem;
}
.lp-price-green {
  color: #059669;
  font-weight: 700;
}
.lp-price-savings {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: 1rem;
  padding: .375rem .75rem;
  background: #ecfdf5;
  color: #059669;
  font-size: .8125rem;
  font-weight: 600;
  border-radius: .375rem;
}
.lp-price-cta {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: .75rem;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  border-radius: .5rem;
  text-decoration: none;
  transition: background .15s;
  cursor: pointer;
  border: none;
}
.lp-price-cta-primary {
  background: var(--gold);
  color: var(--navy);
}
.lp-price-cta-primary:hover { background: var(--gold-hover); }
.lp-price-cta-secondary {
  background: var(--navy);
  color: #fff;
}
.lp-price-cta-secondary:hover { background: var(--navy-dark); }
.lp-price-cta:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* ── Benefits ── */
.lp-benefits {
  padding: 4rem 1.25rem;
  background: #fff;
}
.lp-benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .lp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lp-benefits-grid { grid-template-columns: 1fr; }
}
.lp-benefit {
  padding: 1.5rem;
  border-radius: .75rem;
  border: 1px solid #f0f1f5;
  transition: box-shadow .2s, border-color .2s;
}
.lp-benefit:hover {
  border-color: #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.lp-benefit-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,46,116,.06);
  color: var(--navy);
  border-radius: .625rem;
  margin-bottom: .75rem;
  font-size: 1.375rem;
}
.lp-benefit h4 {
  font-size: .9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 .375rem;
}
.lp-benefit p {
  font-size: .8125rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* ── Gallery ── */
.lp-gallery {
  padding: 4rem 1.25rem;
  background: #f8f9fb;
}
.lp-gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 1rem;
}
.lp-gallery-grid .lp-gal-item:first-child {
  grid-row: 1 / 3;
}
@media (max-width: 640px) {
  .lp-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .lp-gallery-grid .lp-gal-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}
.lp-gal-item {
  background: #dfe2ea;
  border-radius: .75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: .8125rem;
}
.lp-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Testimonials ── */
.lp-testimonial {
  padding: 4rem 1.25rem;
  background: #fff;
}
.lp-testimonial-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.lp-testimonial blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 1rem;
  position: relative;
}
.lp-testimonial blockquote::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  top: -.75rem;
  left: -.5rem;
  line-height: 1;
}
.lp-testimonial cite {
  display: block;
  font-style: normal;
  font-size: .875rem;
  color: #6b7280;
  font-weight: 600;
}

/* ── Final CTA ── */
.lp-final-cta {
  padding: 4rem 1.25rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
  color: #fff;
}
.lp-final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 .5rem;
}
.lp-final-cta p {
  color: rgba(255,255,255,.65);
  font-size: .9375rem;
  margin-bottom: 1.5rem;
}
.lp-final-cta .lp-btn-gold {
  font-size: 1rem;
  padding: .875rem 2rem;
}

/* ── Footer ── */
.lp-footer {
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: .8125rem;
  color: #9ca3af;
  background: #f8f9fb;
  border-top: 1px solid #e5e7eb;
}

/* ── Form section ── */
.lp-form-section {
  padding: 4rem 1.25rem;
  background: #fff;
}
.lp-form-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .lp-form-inner { grid-template-columns: 1fr; }
}
.lp-form-card {
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
}
.lp-form-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .375rem;
}
.lp-form-card .lp-form-sub {
  font-size: .875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.lp-field {
  margin-bottom: 1rem;
}
.lp-field label {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: .25rem;
}
.lp-field input,
.lp-field select {
  width: 100%;
  padding: .625rem .75rem;
  font-size: .875rem;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  background: #fff;
  color: #111827;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.lp-field input:focus,
.lp-field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31,46,116,.12);
}
.lp-field .lp-field-err {
  font-size: .75rem;
  color: #dc2626;
  margin-top: .25rem;
}
.lp-field-hint {
  font-size: .75rem;
  color: #9ca3af;
  margin-top: .125rem;
}
.lp-checkbox-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}
.lp-checkbox-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}
.lp-checkbox-row label {
  font-size: .8125rem;
  color: #374151;
  cursor: pointer;
}
.lp-form-submit {
  width: 100%;
  padding: .75rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: .5rem;
  cursor: pointer;
  transition: background .15s;
}
.lp-form-submit:hover { background: var(--gold-hover); }
.lp-form-submit:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Roulette aside in form section */
.lp-form-aside h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .375rem;
}
.lp-form-aside .lp-form-aside-sub {
  font-size: .875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.lp-form-aside #ruleta {
  max-width: 340px;
  margin: 0 auto;
}

/* ── Error banner ── */
.lp-error-banner {
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: .75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: .5rem;
  color: #991b1b;
  font-size: .875rem;
}

/* ── Utility ── */
.lp-hidden { display: none !important; }

/* Smooth scroll */
html { scroll-behavior: smooth; }
