/* The Look University — web de presentación */
:root {
  --oro: #c5a059;
  --oro-claro: #e4cc8a;
  --oro-oscuro: #9a7b35;
  --negro: #0a0a0a;
  --negro-2: #121110;
  --negro-3: #1a1814;
  --crema: #f4f1eb;
  --texto: #1a1a1a;
  --muted: #6e6e68;
  --header-h: 76px;
}

.web {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--texto);
  background: #fff;
}

.web-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

/* ── Header ── */
.web-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  backdrop-filter: blur(14px);
}

.web-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.web-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.web-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.web-menu a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.web-menu a:hover {
  color: var(--oro-claro);
}

.web-btn-campus {
  flex-shrink: 0;
  padding: 0.6rem 1.25rem;
  background: var(--oro);
  color: var(--negro);
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.web-btn-campus:hover {
  background: var(--oro-claro);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(197, 160, 89, 0.35);
}

.web-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.web-nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--oro-claro);
  transition: transform 0.25s, opacity 0.25s;
}

.web-nav-open .web-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.web-nav-open .web-nav-toggle span:nth-child(2) {
  opacity: 0;
}
.web-nav-open .web-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .web-nav-toggle { display: flex; }
  .web-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .web-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .web-menu a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
  }
  .web-btn-campus { display: none; }
  .web-menu.is-open + .web-btn-campus,
  .web-header__row .web-btn-campus { order: 4; }
}

.web-flash-bar {
  padding-top: calc(var(--header-h) + 1rem);
}

/* ── Hero ── */
.web-hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  color: #fff;
  overflow: hidden;
}

.web-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 40%, rgba(197, 160, 89, 0.12), transparent),
    linear-gradient(145deg, var(--negro) 0%, var(--negro-3) 45%, var(--negro) 100%);
}

.web-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 960px) {
  .web-hero__grid { grid-template-columns: 1fr; }
  .web-hero__media { order: -1; }
}

.web-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--oro);
  font-weight: 700;
  margin: 0 0 0.85rem;
}

.web-kicker--dark { color: var(--oro-oscuro); }

.web-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.web-hero h1 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--oro-claro);
  font-weight: 500;
}

.web-hero__lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 34rem;
}

.web-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.web-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.web-btn--primary {
  background: var(--oro);
  color: var(--negro);
}

.web-btn--primary:hover {
  background: var(--oro-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197, 160, 89, 0.4);
}

.web-btn--dark.web-btn--primary {
  color: var(--negro);
}

.web-btn--outline {
  background: transparent;
  color: var(--oro-claro);
  border-color: rgba(197, 160, 89, 0.6);
}

.web-btn--outline:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--oro);
}

.web-btn--lg {
  font-size: 0.95rem;
  padding: 1rem 2rem;
}

.web-btn--sm {
  font-size: 0.8rem;
  padding: 0.65rem 1.25rem;
  margin-top: 0.5rem;
}

.web-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.web-chips span {
  font-size: 0.68rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 100px;
  color: var(--oro-claro);
  background: rgba(197, 160, 89, 0.06);
}

.web-hero__frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.45);
  box-shadow:
    0 4px 0 rgba(197, 160, 89, 0.15),
    0 32px 80px rgba(0, 0, 0, 0.55);
}

.web-hero__frame img {
  width: 100%;
  height: min(540px, 58vh);
  object-fit: cover;
  display: block;
}

/* ── Banda stats ── */
.web-band {
  background: linear-gradient(90deg, #7a6428 0%, var(--oro) 35%, #dcc06a 50%, var(--oro) 65%, #7a6428 100%);
  color: var(--negro);
  padding: 2.25rem 0;
}

.web-band__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.web-band__item {
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid rgba(10, 10, 10, 0.12);
}

.web-band__item:last-child { border-right: none; }

.web-band strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.web-band span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .web-band__items { grid-template-columns: repeat(2, 1fr); }
  .web-band__item:nth-child(2) { border-right: none; }
}

/* ── Secciones comunes ── */
.web-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.web-sec-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.web-sec-head--light {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.web-sec-head--light .web-lead {
  margin-left: auto;
  margin-right: auto;
}

.web-title-dark {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--texto);
  font-weight: 600;
}

.web-title-dark--center { text-align: center; }

.web-title-dark span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--oro-oscuro);
}

.web-title-light {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--oro);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.web-title-light span {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--oro-claro);
}

.web-lead {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 1.02rem;
}

.web-lead--light { color: rgba(255, 255, 255, 0.65); }

.web-copy {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

/* ── Tecnologías ── */
.web-section--brand {
  background: var(--negro);
  padding-bottom: 0;
}

.web-brand-full {
  margin-top: 1rem;
  padding: 0 1rem 3rem;
}

.web-brand-full__inner {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.web-brand-full img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: var(--negro);
}

/* ── Escuela ── */
.web-section--white { background: #fff; }

.web-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .web-split { grid-template-columns: 1fr; }
}

.web-logo-block {
  width: 110px;
  margin-bottom: 1rem;
}

.web-list {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  line-height: 1.75;
  color: var(--muted);
}

.web-list--check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}

.web-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--oro);
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.15);
}

.web-brand-card {
  border-radius: 14px;
  overflow: hidden;
}

.web-brand-card--elevated {
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.12);
}

.web-brand-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ── Metodología ── */
.web-section--dark {
  background: var(--negro-2);
  color: #fff;
}

.web-brand-card--wide img {
  aspect-ratio: auto;
  max-height: 440px;
  object-fit: contain;
  background: var(--negro-3);
}

.web-brand-card--glow {
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 0 60px rgba(197, 160, 89, 0.08);
}

/* ── Pasos ── */
.web-section--steps {
  background: var(--crema);
  padding: 4rem 0;
}

.web-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

@media (max-width: 900px) {
  .web-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .web-steps { grid-template-columns: 1fr; }
}

.web-steps li {
  background: #fff;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.web-steps li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.08);
}

.web-steps__n {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--oro);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.web-steps h3 {
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.web-steps p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Cursos ── */
.web-section--cream { background: var(--crema); }

.web-courses {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.web-course--visual {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.28);
  box-shadow: 0 10px 40px rgba(10, 10, 10, 0.06);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.web-course--visual:hover {
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.1);
  transform: translateY(-2px);
}

.web-course--alt .web-course__visual { order: 0; }
.web-course--alt .web-course__body { order: 1; }

@media (max-width: 820px) {
  .web-course--visual { grid-template-columns: 1fr; }
}

.web-course--star {
  border-color: var(--oro);
  box-shadow: 0 14px 48px rgba(197, 160, 89, 0.18);
}

.web-course__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--oro);
  color: var(--negro);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.web-course__visual {
  background: var(--negro);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 1rem;
}

.web-course__visual img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.web-course__body {
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.web-course__tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--oro-oscuro);
  font-weight: 700;
}

.web-course h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  margin: 0.4rem 0 0.75rem;
  font-weight: 600;
}

.web-course p {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
  font-size: 0.92rem;
}

.web-course__features {
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: #555;
}

.web-course__features li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.web-course__features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--oro);
}

.web-campus-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Quote ── */
.web-section--quote {
  background: var(--negro);
  color: #f0f0ec;
  padding: 4.5rem 0;
}

.web-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.web-quote__mark {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  color: var(--oro);
  line-height: 0.4;
  margin-bottom: 1.25rem;
}

.web-quote blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.web-quote cite {
  display: block;
  margin-top: 1.25rem;
  color: var(--oro);
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CTA ── */
.web-cta-block {
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(197, 160, 89, 0.18), transparent 55%),
    var(--negro);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.web-cta-logo {
  margin-bottom: 1.25rem;
}

.web-cta-block h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 1rem;
  font-weight: 600;
}

.web-cta-block p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.web-cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.web-cta-panel { margin-top: 1.25rem; }

.web-link {
  color: var(--oro-claro);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ── */
.web-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.55);
  padding: 3.5rem 0 1.5rem;
}

.web-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 800px) {
  .web-footer__grid { grid-template-columns: 1fr 1fr; }
}

.web-footer__logo {
  height: 42px;
  margin-bottom: 0.85rem;
}

.web-footer__brand p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  max-width: 260px;
}

.web-footer__domain {
  color: var(--oro);
  font-size: 0.85rem;
  text-decoration: none;
}

.web-footer h4 {
  color: var(--oro);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.web-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.84rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.web-footer a:hover { color: var(--oro-claro); }

.web-footer__copy {
  text-align: center;
  font-size: 0.75rem;
  margin: 1.75rem 0 0;
  color: rgba(255, 255, 255, 0.3);
}

/* Campus (lección) — no tocar presentación */
.pasos-leccion .badge { margin-right: 0.5rem; }
.form-test { margin-top: 1rem; }
