html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #d1d1d2;
}

/* ================= MENU ================= */
.menu {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  opacity: 0;
  box-sizing: border-box;
}

.menu-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.menu-center {
  display: flex;
  gap: 40px;
  list-style: none;
  color: #222;
}

.login-btn {
  background: linear-gradient(135deg, #000, #444);
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #d1d1d2;
}

.white-bg,
.color-bg {
  position: fixed;
  inset: 0;
}

.white-bg { background: white;   z-index: 4; }  /* encima del logo al inicio */
.color-bg { background: #d1d1d2; opacity: 0; z-index: 6; } /* encima del logo al final */

.logo-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 5;
}

.logo {
  width: 450px;
  display: block;
}

.logo { width: 450px; }

/* ================= SCROLL ================= */
.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
  width: 20px;
  height: 20px;
  border-bottom: 3px solid black;
  border-right: 3px solid black;
  transform: rotate(45deg);
  display: block;
  margin: -5px;
  animation: scroll 1.5s infinite;
}

/* ================= SELLOS ================= */
.sellos {
  height: 100vh;
  background: #d1d1d2;
}

.stack {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-card {
  position: absolute;
  width: 650px;
  height: 320px;
  border-radius: 25px;
  padding: 30px;
  display: flex;
  align-items: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.card-content {
  display: flex;
  gap: 25px;
}

.card-content img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: white;
  padding: 10px;
}

.c1 { background: linear-gradient(135deg, #ff5f6d, #ffc371); }
.c2 { background: linear-gradient(135deg, #36d1dc, #5b86e5); color:white;}
.c3 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.c4 { background: linear-gradient(135deg, #c471ed, #f64f59); color:white; }

/* ================= ICONOS ================= */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 15;
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.icon-1 { --radius: 480; }
.icon-2 { --radius: 580; }
.icon-3 { --radius: 700; }
.icon-4 { --radius: 520; }

/* ================= CORTINA ================= */
/*
  position: fixed → flota sobre TODO (sellos, ciudadania, etc.)
  Al cerrarse cubre lo que sea que esté visible en pantalla
*/
.curtain {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100vh;
  z-index: 20;
  overflow: hidden;
}

.curtain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/colegio.png") center/cover no-repeat;
  width: 200%;
}

.curtain-left::before  { left: 0; }
.curtain-right::before { left: -100%; }

.curtain-left  { left: 0;  transform: translateX(-100%); }
.curtain-right { right: 0; transform: translateX(100%); }

/* ================= CIUDADANIA ================= */

/* Se superpone sobre .sellos al scrollear */
.ciudadania {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 30;
  margin-top: -100vh; /* empieza encima de sellos — sube tapando la última card */
  box-shadow: 0 -40px 80px rgba(0,0,0,0.4);
}

/* Fondo imagen con transición suave */
.ci-bg {
  position: absolute;
  inset: 0;
  background: url("img/colegio.png") center/cover no-repeat;
  z-index: 1;
  transform: scale(1);
  filter: blur(0px);
  transition: filter 0.6s ease;
}

/* Overlay dramático en capas */
.ci-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(0,0,0,0.55) 0%, transparent 60%),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.82) 100%
    );
  opacity: 0;
  z-index: 2;
}

/* Velo de color sutil para profundidad extra */
.ci-color-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 40, 80, 0.3), rgba(60, 10, 40, 0.2));
  opacity: 0;
  z-index: 3;
  mix-blend-mode: multiply;
}

/* Partículas de luz decorativas */
.ci-light {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,100,0.12) 0%, transparent 70%);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

.ci-light-1 { top: 10%; left: 15%; }
.ci-light-2 { bottom: 20%; right: 20%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(100,180,255,0.1) 0%, transparent 70%); }

/* Contenido encima */
.ciudad-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ci-scenes {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── ESCENA: diseño renovado ── */
.ci-scene {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;

  width: 680px;
  max-width: 88%;

  padding: 56px 64px 52px;
  border-radius: 24px;

  /* Vidrio más refinado */
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);

  /* Borde sutil luminoso */
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset;

  color: #fff;
  text-align: center;
}

/* Número decorativo de escena */
.ci-scene-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 220, 150, 0.85);
  margin-bottom: 20px;
  padding: 5px 16px;
  border: 1px solid rgba(255, 220, 150, 0.3);
  border-radius: 30px;
  background: rgba(255, 200, 80, 0.08);
}

/* Título de escena */
.ci-scene h2 {
  margin: 0 0 18px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Línea decorativa bajo el título */
.ci-scene h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,200,80,0.9), rgba(255,120,80,0.6));
  border-radius: 3px;
  margin: 14px auto 0;
}

/* Párrafo de escena */
.ci-scene p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.01em;
}

/* Indicador de progreso de escenas */
.ci-progress {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 15;
  opacity: 0;
}

.ci-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.4s ease;
}

.ci-dot.active {
  background: rgba(255, 200, 80, 0.9);
  transform: scale(1.4);
}

/* ================= REGLAMENTO ================= */

.reglamento {
  position: fixed;
  inset: 0;
  background: #0a0a0f;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 110; /* encima del menú (z-index: 100) */
  overflow-y: auto;
  overflow-x: hidden;
}

.reg-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(255,160,50,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(100,80,200,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(255,80,80,0.04) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.reg-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 100px 40px 120px;
  box-sizing: border-box;
}

/* ── HEADER ── */
.reg-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reg-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.reg-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 200, 80, 0.85);
  padding: 5px 18px;
  border: 1px solid rgba(255, 200, 80, 0.25);
  border-radius: 30px;
  background: rgba(255, 200, 80, 0.06);
  margin-bottom: 24px;
  display: inline-block;
}

.reg-header h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.reg-year {
  color: rgba(255, 200, 80, 0.9);
}

.reg-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.reg-pdf-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(255,180,50,0.9), rgba(255,100,60,0.9));
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
}

.reg-pdf-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ── STATS ── */
.reg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.reg-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}

.reg-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.reg-stat:hover {
  border-color: rgba(255, 200, 80, 0.3);
}

.reg-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 200, 80, 0.9);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.reg-stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* ── FAQ ── */
.reg-faq-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.reg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reg-faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}

.reg-faq-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.reg-faq-item.open {
  border-color: rgba(255, 200, 80, 0.3);
}

.reg-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.4;
}

.reg-faq-q:hover {
  color: rgba(255, 200, 80, 0.9);
}

.reg-faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  transition: transform 0.35s ease;
}

.reg-faq-item.open .reg-faq-arrow {
  transform: rotate(180deg);
  color: rgba(255, 200, 80, 0.8);
}

.reg-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.reg-faq-item.open .reg-faq-a {
  max-height: 300px;
  padding: 0 28px 22px;
}

.reg-faq-a p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}

.reg-faq-a strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE — TABLET (max 1024px) y MÓVIL (max 600px)
   ===================================================== */

/* ── TABLET ── */
@media (max-width: 1024px) {

  /* MENU */
  .menu { padding: 0 30px; }
  .menu-center { gap: 24px; font-size: 0.9rem; }
  .menu-logo { width: 55px; height: 55px; }
  .login-btn { padding: 10px 16px; font-size: 0.85rem; }

  /* HERO */
  .logo { width: 320px; }

  /* SELLOS */
  .stack-card { width: 520px; height: auto; min-height: 220px; }
  .card-content img { width: 85px; height: 85px; }
  .icon { width: 160px; }

  /* CIUDADANIA */
  .ci-scene { width: 580px; padding: 44px 48px 40px; }
  .ci-scene h2 { font-size: 1.8rem; }

  /* REGLAMENTO */
  .reg-stats { grid-template-columns: repeat(2, 1fr); }
  .reg-header h2 { font-size: 2.6rem; }
  .reg-content { padding: 80px 40px 100px; }
}

/* ── MÓVIL ── */
@media (max-width: 600px) {

  /* MENU */
  .menu {
    padding: 0 16px;
    top: 12px;
  }
  .menu-logo { width: 44px; height: 44px; }
  .menu-center { display: none; } /* ocultamos links en móvil */
  .login-btn { padding: 8px 14px; font-size: 0.8rem; }

  /* HERO */
  .logo { width: 220px; }

  /* SELLOS */
  .sellos { height: 320vh; } /* más espacio para el stack en móvil */

  .stack-card {
    width: calc(100vw - 40px);
    height: auto;
    min-height: 160px;
    padding: 20px;
    border-radius: 18px;
  }

  .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .card-content img {
    width: 70px;
    height: 70px;
    padding: 8px;
  }

  .card-content h3 { font-size: 1rem; margin: 0 0 4px; }
  .card-content p  { font-size: 0.85rem; margin: 0; }

  /* Íconos orbitales — radio más pequeño */
  .icon { width: 100px; }
  .icon-1 { --radius: 220; }
  .icon-2 { --radius: 260; }
  .icon-3 { --radius: 300; }
  .icon-4 { --radius: 240; }

  /* CIUDADANIA */
  .ci-scene {
    width: calc(100vw - 32px);
    max-width: 100%;
    padding: 32px 24px 28px;
    border-radius: 18px;
  }

  .ci-scene-num { font-size: 10px; margin-bottom: 14px; }
  .ci-scene h2  { font-size: 1.4rem; margin-bottom: 12px; }
  .ci-scene p   { font-size: 0.9rem; }

  .ci-progress { bottom: 24px; }

  /* REGLAMENTO */
  .reg-content { padding: 60px 20px 80px; }

  .reg-header h2  { font-size: 2rem; }
  .reg-sub        { font-size: 0.9rem; }
  .reg-pdf-btn    { padding: 10px 20px; font-size: 0.85rem; }

  .reg-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
  }

  .reg-stat { padding: 18px 10px; }
  .reg-stat-num   { font-size: 1.5rem; }
  .reg-stat-label { font-size: 0.72rem; }

  .reg-faq-q    { padding: 16px 18px; font-size: 0.9rem; }
  .reg-faq-a    { padding: 0 18px; }
  .reg-faq-item.open .reg-faq-a { padding: 0 18px 16px; }
  .reg-faq-a p  { font-size: 0.88rem; }
}

/* =====================================================
   MENÚ REDISEÑADO — glassmorphism
   ===================================================== */

.menu {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  padding: 0 48px;
  height: 68px;
  top: 0;
}

.menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.menu-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Items del menú */
.menu-item {
  position: relative;
  list-style: none;
}

.menu-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #222;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.2s;
  white-space: nowrap;
}

.menu-item > a:hover,
.menu-item.active > a { color: #000; }

.menu-item.active > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

.menu-chevron {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
  opacity: 0.5;
}

.menu-item:hover .menu-chevron { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.menu-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(15,15,20,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.menu-item:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.menu-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.menu-dropdown li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Hamburger */
.menu-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 12px;
}

.menu-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* =====================================================
   MOBILE MENU FULLSCREEN
   ===================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,12,0.97);
  backdrop-filter: blur(20px);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
  width: 100%;
  padding: 40px 32px;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-links > li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: calc(var(--i) * 0.06s);
}

.mobile-menu.open .mobile-menu-links > li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-links > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-menu-links > li > a:hover { color: rgba(255,200,80,0.9); }

.mobile-submenu {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-submenu li a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.mobile-submenu li a:hover { color: rgba(255,255,255,0.85); }

.mobile-login-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #000, #444);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* =====================================================
   PAGE TRANSITION OVERLAY
   ===================================================== */

.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0f;
  z-index: 999;
  transform: scaleY(0);
  transform-origin: bottom center;
  pointer-events: none;
}

/* =====================================================
   PÁGINAS INTERNAS
   ===================================================== */

body.inner-page {
  background: #0a0a0f;
}

body.inner-page .menu {
  background: rgba(10,10,15,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}

body.inner-page .menu-brand-name,
body.inner-page .menu-item > a { color: rgba(255,255,255,0.8); }
body.inner-page .menu-item > a:hover,
body.inner-page .menu-item.active > a { color: #fff; }
body.inner-page .menu-item.active > a::after { background: rgba(255,200,80,0.9); }
body.inner-page .menu-hamburger span { background: rgba(255,255,255,0.8); }

.inner-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 60px;
  background: linear-gradient(to bottom, rgba(255,200,80,0.04), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-top: 100px;
}

.inner-hero-content { max-width: 700px; }

.inner-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,200,80,0.85);
  padding: 5px 16px;
  border: 1px solid rgba(255,200,80,0.25);
  border-radius: 30px;
  margin-bottom: 20px;
}

.inner-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.inner-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.7;
}

.inner-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 60px 120px;
}

.inner-section {
  margin-bottom: 80px;
}

.inner-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.inner-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 0 0 14px;
}

/* Directiva */
.directiva-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.directiva-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}

.directiva-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.directiva-card h3 { font-size: 0.85rem; color: rgba(255,200,80,0.85); margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.1em; }
.directiva-card p  { font-size: 0.95rem; color: #fff; margin: 0; font-weight: 600; }

/* Comunidad */
.comunidad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.comunidad-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px;
}

.comunidad-card h3 { font-size: 1rem; color: #fff; margin: 0 0 8px; font-weight: 600; }
.comunidad-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin: 0; line-height: 1.6; }

/* Reglamentos list */
.reglamentos-list { display: flex; flex-direction: column; gap: 12px; }

.reglamento-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 28px;
  transition: border-color 0.2s, background 0.2s;
}

.reglamento-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,200,80,0.3);
}

.reglamento-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,200,80,0.5);
  min-width: 40px;
}

.reglamento-info { flex: 1; }
.reglamento-info h3 { font-size: 1rem; color: #fff; margin: 0 0 4px; font-weight: 600; }
.reglamento-info p  { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }

.reglamento-btn {
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,200,80,0.1);
  border: 1px solid rgba(255,200,80,0.3);
  color: rgba(255,200,80,0.9);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}

.reglamento-btn:hover { background: rgba(255,200,80,0.2); }

/* Contacto */
.contacto-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contacto-dato {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contacto-icon { font-size: 1.5rem; }
.contacto-dato strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 4px; }
.contacto-dato p { margin: 0; color: rgba(255,255,255,0.45); font-size: 0.9rem; }
.contacto-dato a { color: rgba(255,200,80,0.8); text-decoration: none; }

.contacto-form h3 { color: #fff; font-size: 1.3rem; margin: 0 0 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 6px; letter-spacing: 0.05em; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255,200,80,0.4);
}

.form-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,180,50,0.9), rgba(255,100,60,0.9));
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.form-btn:hover { opacity: 0.85; }

/* =====================================================
   RESPONSIVE PÁGINAS INTERNAS
   ===================================================== */

@media (max-width: 1024px) {
  .menu { padding: 0 24px; }
  .menu-brand-name { display: none; }
  .inner-hero { padding: 100px 32px 48px; }
  .inner-content { padding: 60px 32px 80px; }
  .directiva-grid { grid-template-columns: repeat(2, 1fr); }
  .comunidad-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .menu-center { display: none !important; }
  .menu-hamburger { display: flex; }
  .menu { padding: 0 16px; height: 58px; }
  .inner-hero { padding: 80px 20px 36px; }
  .inner-hero-content h1 { font-size: 2.2rem; }
  .inner-content { padding: 40px 20px 60px; }
  .directiva-grid { grid-template-columns: repeat(2, 1fr); }
  .comunidad-grid { grid-template-columns: 1fr; }
  .reglamento-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contacto-grid { grid-template-columns: 1fr; }
}
