@font-face {
  font-family: "Geist";
  src: local("Geist"), local("Geist Sans"), url("fonts/Geist-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: local("Geist"), local("Geist Sans"), url("fonts/Geist-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: local("Geist"), local("Geist Sans"), url("fonts/Geist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: local("Geist"), local("Geist Sans"), url("fonts/Geist-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: local("Geist"), local("Geist Sans"), url("fonts/Geist-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --stone-50: #fafaf9;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --amber-700: #b45309;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone-50);
  color: var(--stone-900);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  background: var(--stone-50);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.center {
  text-align: center;
}

.muted {
  color: var(--stone-400);
}

.muted.small {
  font-size: 14px;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--stone-800);
  backdrop-filter: blur(8px);
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.brand img {
  filter: invert(1);
}

.logo {
  height: auto;
  display: block;
}

.logo-nav {
  width: 100px;
}

.logo-footer {
  width: 96px;
}

.nav-links {
  display: none;
  gap: 24px;
  font-size: 14px;
}

.nav-links a {
  color: var(--stone-300);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}

.hero-content p {
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 0 0 32px;
  opacity: 0.9;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 18px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-icon {
  display: inline-block;
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

.btn-primary {
  background: var(--amber-700);
  color: #ffffff;
}

.btn-primary:hover {
  background: #92400e;
}

.section {
  padding: 80px 0;
  scroll-margin-top: 90px;
}

.section-dark {
  background: #0c0a09;
  color: #ffffff;
}

.section-muted {
  background: var(--stone-900);
  color: #ffffff;
}

.section-light {
  background: #ffffff;
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 24px;
}

h3 {
  font-size: 20px;
  margin: 0 0 16px;
}

p {
  color: var(--stone-600);
  line-height: 1.7;
  font-size: 16px;
}

.section-dark p,
.section-muted p,
.contact p,
.footer p {
  color: var(--stone-300);
}

.lead {
  font-size: 18px;
  margin-bottom: 24px;
}

.wide {
  max-width: 800px;
  margin: 0 auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.split-tight {
  gap: 32px;
}

.split-main {
  flex: 1;
  max-width: 720px;
}

.split-aside {
  flex: 0 0 380px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.badge {
  border: 1px solid var(--amber-700);
  color: var(--amber-700);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background: #ffffff;
  color: var(--stone-900);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.card h3 {
  font-size: 18px;
}

.card p {
  color: var(--stone-900);
  font-size: 14px;
  line-height: 1.6;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--amber-100);
  color: var(--amber-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  gap: 48px;
}

.feature-grid > div {
  text-align: center;
}

.accent {
  color: var(--amber-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.programacion-label {
  font-size: 24px;
  font-weight: 700;
  color: var(--amber-700);
  margin-bottom: 8px;
}

.programacion-copy {
  text-align: center;
  font-size: 18px;
  margin: 24px auto 48px;
  max-width: 900px;
  color: var(--stone-600);
}

.programacion-images {
  display: grid;
  gap: 32px;
}

.programacion-images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.image-section {
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg.faint {
  opacity: 0.05;
}

.image-section .section-bg {
  opacity: 0.1;
}

.image-section-content {
  position: relative;
  z-index: 2;
}

.rounded {
  border-radius: 12px;
}

.shadow {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.contact {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #1c1917, #0f0f0f);
}

.contact-content {
  position: relative;
  z-index: 2;
}

.divider {
  width: 96px;
  height: 4px;
  background: var(--amber-700);
  margin: 16px auto 0;
}

.panel-grid {
  display: grid;
  gap: 24px;
  max-width: 640px;
  margin: 40px auto 0;
}

.panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.panel h3 {
  color: var(--amber-400);
  margin-bottom: 16px;
}

.panel-strong {
  color: #e7e5e4;
  font-size: 18px;
  margin-bottom: 4px;
}

.panel-link {
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.panel-link:hover {
  color: var(--amber-400);
}

.footer {
  position: relative;
  overflow: hidden;
  background: var(--stone-900);
  color: #ffffff;
  padding: 48px 0;
}

.footer-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-brand img {
  filter: invert(1);
}

.footer-brand span {
  font-size: 24px;
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .nav-inner {
    justify-content: space-between;
  }

  .nav-links {
    display: flex;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .split {
    flex-direction: row;
    align-items: center;
  }
}
