
    :root {
      --color-fondo: rgba(236, 96, 60);
      --color-primario: #d21f30;
      --color-secundario: #20295a;
      --color-claro: #f8f4f3;
      --color-oscuro: #05040c;
      --color-acento: #ae414e;
      --color-blanco: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
    }

    body {
    background-color: rgb(255, 242, 231);
      color: var(--color-oscuro);
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
    }

    .contenedor {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .fila {
      display: flex;
      flex-wrap: wrap;
      margin: -15px;
    }

    .columna {
      padding: 15px;
    }

    .col-completa { width: 100%; }
    .col-mitad { width: 50%; }
    .col-tercio { width: 45%; }
    .col-tercio-tarjeta{
      width: 33.33%;
    }
    .col-cuarto { width: 25%; }
    .col-dos-tercios { width: 50%; }

    @media (max-width: 992px) {
      .col-mitad, .col-tercio, .col-cuarto, .col-dos-tercios {
        width: 100%;
      }
    }

    @media (min-width: 768px) and (max-width: 992px) {
      .col-mitad { width: 50%; }
    }

    /* NAVBAR */
    .barra-navegacion {
      background: rgba(6, 19, 74, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0 0 20px 20px;
      width: 95%;
      height: 75px;
      margin: 0 auto 0 auto;
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      transition: all 0.4s ease;
      padding: 0.5rem 1.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .contenedor-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .marca {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-navbar {
      height: 60px;
      width: 60px;
      border-radius: 50%;
      object-fit: cover;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .logo-navbar:hover {
      transform: scale(1.03);
      border-color: var(--color-primario);
    }

    .texto-marca{
      display: flex;
      flex-direction: column;
      margin-bottom: -7px;
    }
    .texto-marca h2 {
      font-size: 1.2rem;
      line-height: 1;
      color: var(--color-claro);
      margin: 0;
    }

    .texto-marca span {
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      color: var(--color-claro);
      font-weight: 600;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--color-claro);
      font-size: 1.5rem;
      cursor: pointer;
      padding: 10px;
    }

    .navegacion-principal {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .lista-nav {
      display: flex;
      list-style: none;
      gap: 10px;
      margin: 0;
      padding: 0;
    }

    .enlace-nav {
      color: rgba(248, 244, 243, 0.9);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 10px 18px;
      letter-spacing: 0.4px;
      border-radius: 50px;
      display: inline-block;
    }

    .enlace-nav:hover,
    .enlace-nav.activo {
      color: var(--color-blanco);
background-color: color-mix(in srgb, var(--color-primario) 70%, transparent);

    }

    .botones-sociales {
      display: flex;
      gap: 15px;
      align-items: center;
      margin-left: 20px;
    }

    .boton-social {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid;
    }

    .boton-social.whatsapp {
      border-color: var(--color-blanco);
      color: var(--color-blanco);
      background: transparent;
    }

    .boton-social.whatsapp:hover {
      background-color: #d21f30;
      color: white;
    }

    .boton-social.facebook {
      border-color: #ffffff;
      color: #ffffff;
      background: transparent;
    }

    .boton-social.facebook:hover {
      background-color: var(--color-primario);
      color: white;
    }

    @media (max-width: 1400px) {
      .menu-toggle {
        display: block;
      }

      .navegacion-principal {
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        background: rgba(6, 19, 74, 0.98);
        flex-direction: column;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 20px;
        width: 95%;
        margin: 0 auto;
      }

      .navegacion-principal.abierto {
        max-height: 600px;
        padding: 20px;
      }

      .lista-nav {
        flex-direction: column;
        width: 100%;
        gap: 5px;
      }

      .enlace-nav {
        width: 100%;
        text-align: center;
      }

      .botones-sociales {
        margin-left: 0;
        justify-content: center;
        margin-top: 15px;
      }
    }

    /* HERO */
    .hero {
      max-height: calc(100vh - 120px);
      border-radius: 20px;
      width: 95%;
      margin: 100px auto 0;
      padding: 4rem 2rem;
      color: var(--color-oscuro);
      background-color: #ffffff;
      background-size: cover;
      background-position: center;
      position: relative;
      border-bottom: 6px solid rgba(0, 0, 0, 0.08);
      overflow: hidden;
      background-image: linear-gradient(to bottom right, transparent, rgba(0, 0, 0, 0.1));
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .hero .fila {
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

  .insignia-personalizada {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem .3rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.70rem;
  color: var(--color-claro);
  background: linear-gradient(135deg, var(--color-fondo) 0%, #2a2f66 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 8px rgba(42, 47, 102, 0.3);
  transition: all 0.3s ease;
  cursor: default;
}

.insignia-personalizada i {
  font-size: 1.1rem;
  color: var(--color-claro);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.insignia-personalizada:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), 0 0 12px rgba(42, 47, 102, 0.4);
}


    .hero h1 {
      font-size: clamp(2rem, 5vw, 2.6rem);
      font-weight: 700;
      margin: 1.1rem 0 .9rem;
      line-height: 1.2;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
      color: var(--color-primario);
    }

    .texto-acento {
      color: var(--color-primario);
      font-weight: 800;
      background: linear-gradient(135deg, var(--color-fondo) 0%, var(--color-secundario) 100%);
      -webkit-background-clip: text; /* Chrome, Safari, Edge */
      -webkit-text-fill-color: transparent; /* Chrome, Safari, Edge */
      background-clip: text; /* Firefox */
      color: transparent; /* fallback */

    }

    

    .hero p.texto-destacado {
      font-size: 1rem;
      color: var(--color-oscuro);
      opacity: 0.95;
      max-width: 600px;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .lista-caracteristicas {
      list-style: none;
      margin-bottom: 2rem;
    }

    .lista-caracteristicas li {
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      color: var(--color-oscuro);
      display: flex;
      align-items: center;
      letter-spacing: 0.3px;
      transition: transform 0.25s ease, color 0.25s ease;
    }

    .lista-caracteristicas li:hover {
      transform: translateX(5px);
      color: #a61a26;
    }

    .lista-caracteristicas li i {
      color: var(--color-primario);
      font-size: 1.2rem;
      margin-right: 10px;
    }

    .grupo-botones {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .boton {
      padding: 6px 27px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      text-align: center;
      cursor: pointer;
      font-size: 0.8rem;
    }

 



/* BOTÓN PRIMARIO 2 */
.boton-primario-2 {
  border: 2px solid var(--color-primario);
  background-color: var(--color-primario);
  color: var(--color-blanco);
  transition: all 0.3s ease;
}

.boton-primario-2:hover {
  background-color: transparent;
  color: var(--color-primario);
}

/* BOTÓN SECUNDARIO 1 */
.boton-secundario-1 {
  border: 2px solid var(--color-secundario);
  background-color: var(--color-secundario);
  color: var(--color-blanco);
  box-shadow: 0 4px 10px rgba(32, 41, 90, 0.2);
  transition: all 0.3s ease;
}

.boton-secundario-1:hover {
  background-color: transparent;
  color: var(--color-claro);
}

/* BOTÓN SECUNDARIO 2 */
.boton-secundario-2 {
  padding: 10px 20px;
  border: 2px solid var(--color-secundario);
  background-color: var(--color-secundario);
  color: var(--color-claro);
  box-shadow: 0 4px 10px rgba(32, 41, 90, 0.2);
  transition: all 0.3s ease;
}

.boton-secundario-2:hover {
  background-color: transparent;
  color: var(--color-secundario);
}



    .contenedor-imagen-hero {
      border-radius: 12px;
      height: 100%;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(2, 2, 6, 0.18);
    }

    .contenedor-imagen-hero img {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* SECCIONES */
    .seccion {
  border-radius: 20px;
  margin: 50px auto;
  max-width: 95%;
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #ffffff 0%, #f0f0f0 100%);
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.05); /* sombra sutil hacia esquina inferior derecha */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.seccion:hover {
  box-shadow: 6px 10px 16px rgba(0, 0, 0, 0.08); /* leve elevación al pasar el mouse */
  transform: translateY(-2px);
}



    .fondo-patron-claro {
      background: linear-gradient(135deg, rgba(248,244,243,0.95), rgba(222,218,215,0.95));
      margin-top: 2rem;
    }

    .fondo-blanco {
      background: white;
    }

    .fondo-azul-suave {
      background: linear-gradient(135deg, rgba(32, 41, 90, 0.05) 0%, rgba(32, 41, 90, 0.1) 100%);
    }

    .fondo-azul-oscuro {
      background: linear-gradient(135deg, #20295a 0%, #1a2149 100%);
      color: var(--color-claro);
    }



.titulo-seccion {
  display: inline-block; /* importante para textos cortos */
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900; /* más ancho */
  background: linear-gradient(90deg, var(--color-primario), var(--color-secundario));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 1px; /* opcional */
}



    .titulo-seccion::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background: var(--color-acento);
      margin-top: 8px;
      border-radius: 3px;
    }

    .texto-destacado {
      font-size: 1.1rem;
      color: var(--color-oscuro);
      line-height: 1.6;
      margin-bottom: 1rem;
    }
    .texto-apagado-1 {
      color: var(--color-acento);
      font-size: 1rem;
      line-height: 1.6;
    }

    .testimonio {
      background: linear-gradient(180deg,rgba(248,244,243,0.96),rgba(248,244,243,0.92));
      padding: 1.25rem;
      border-radius: 10px;
      border: 1px solid rgba(2,2,6,0.03);
      border-left: 4px solid var(--color-primario);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-top: 1.5rem;
    }

    .testimonio:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .testimonio p {
      margin-bottom: 0.5rem;
    }

    .testimonio .autor {
      font-weight: 700;
      text-align: right;
      margin: 0;
    }

    .contenedor-imagen {

      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(2,2,6,0.18);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .contenedor-imagen:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .contenedor-imagen img {
      width: 100%;

      display: block;
    }

    /* TARJETAS */
    .tarjeta {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    145deg,
    var(--color-blanco) 0%,
    rgba(240, 240, 245, 0.95) 40%,
    rgba(220, 220, 230, 0.9) 100%
  );
  border: 1px solid rgba(32, 41, 90, 0.08);
  box-shadow:
    0 8px 24px rgba(2, 2, 6, 0.08),
    0 0 12px rgba(255, 255, 255, 0.4) inset; /* efecto rutil */
  transition: all 0.35s cubic-bezier(.2,.9,.3,1);
}

/* Hover más luminoso y profundo */
.tarjeta:hover {
  transform: translateY(-10px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(255, 255, 255, 0.5) inset;
  border-color: var(--color-secundario);
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    rgba(245, 245, 250, 0.95) 45%,
    rgba(225, 225, 235, 0.9) 100%
  );
}


    .imagen-tarjeta {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .tarjeta:hover .imagen-tarjeta {
      transform: scale(1.08);
    }

    .cuerpo-tarjeta {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 1.75rem;
      flex-grow: 1;
    }
      
    .descripcion-seccion{
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.9rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--color-secundario);
      border-bottom: 3px solid var(--color-secundario);
      
      transition: all 0.3s ease;
      cursor: default;
        }
    .tarjeta h5 {
      width: 100%;
      text-align: left;
      margin-bottom: 0.75rem;
      color: var(--color-secundario);
      font-size: 1.25rem;
      font-weight: 700;
    }

    .texto-apagado-2 {
      color: rgba(255, 241, 241, 0.93);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .pie-tarjeta {
      padding: 1.25rem 1.75rem;
      border-top: 2px solid rgba(32, 41, 90, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, transparent, rgba(32, 41, 90, 0.02));
    }

    .pie-tarjeta strong {
      color: var(--color-primario);
      font-size: 1.35rem;
      font-weight: 700;
    }

    .boton-pequeno {
      padding: 10px 24px;
      font-size: 0.9rem;
    }

    .encabezado-seccion {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 3rem;
      padding-bottom: 1.5rem;
      border-bottom: 3px solid var(--color-secundario);
    }

    @media (max-width: 768px) {

      .encabezado-seccion {
        flex-direction: column;
        gap: 1rem;
      }
    }

    /* MENÚ */
    .pestanas {
      display: flex;
      list-style: none;
      gap: 12px;
      margin-bottom: 2.5rem;
      border-bottom: 3px solid rgba(32, 41, 90, 0.15);
      padding-bottom: 12px;
      flex-wrap: wrap;
    }

    .pestana {
      padding: 14px 28px;
      background: transparent;
      border: 2px solid var(--color-secundario);
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
      color: var(--color-secundario);
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .pestana:hover {
      background: rgba(32, 41, 90, 0.1);
      transform: translateY(-2px);
    }

    .pestana.activa {
      background: var(--color-secundario);
      color: white;
      box-shadow: 0 6px 20px rgba(32, 41, 90, 0.3);
    }

    .contenido-pestana {
      display: none;
      animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .contenido-pestana.activo {
      display: block;
    }

    .lista-menu {
      list-style: none;
      background: white;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 0 4px 15px rgba(32, 41, 90, 0.08);
    }

    .lista-menu li {
      display: flex;
      justify-content: space-between;
      padding: 1.25rem;
      border-bottom: 1px solid rgba(32, 41, 90, 0.1);
      transition: all 0.3s ease;
      border-radius: 8px;
      margin-bottom: 0.5rem;
    }

    .lista-menu li:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .lista-menu li:hover {
      background: rgba(32, 41, 90, 0.05);
      transform: translateX(8px);
    }

    .lista-menu strong {
      color: var(--color-secundario);
      font-size: 1.1rem;
    }

    .lista-menu .precio {
      color: var(--color-primario);
      font-weight: 700;
      font-size: 1.15rem;
    }

    .acordeon {
      display: none;
    }

    .item-acordeon {
      margin-bottom: 15px;
      border: 2px solid rgba(32, 41, 90, 0.15);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(32, 41, 90, 0.08);
    }

    .encabezado-acordeon {
      width: 100%;
      padding: 18px 24px;
      background: linear-gradient(135deg, var(--color-secundario), #1a2149);
      border: none;
      text-align: left;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      font-size: 1.05rem;
      transition: all 0.3s ease;
    }

    .encabezado-acordeon:hover {
      background: linear-gradient(135deg, #1a2149, var(--color-secundario));
    }

    .encabezado-acordeon i {
      transition: transform 0.3s ease;
    }

    .cuerpo-acordeon {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: white;
    }

    .cuerpo-acordeon.abierto {
      max-height: 600px;
      padding: 20px 24px;
    }

    @media (max-width: 768px) {
      .pestanas {
        display: none;
      }
      
      .acordeon {
        display: block;
      }
    }


    
    /* TARJETA DE INFORMACIÓN */
.tarjeta-info {
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #202956 0%, #131836 100%);
  box-shadow: 0 12px 32px rgba(10, 15, 40, 0.45);
  color: #fff;
  position: sticky;
  top: 120px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}

/* Efecto de brillo sutil */
.tarjeta-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(255,255,255,0.07), transparent 70%);
  pointer-events: none;
}

/* Encabezados */
.tarjeta-info h5, 
.tarjeta-info h6 {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.tarjeta-info h5 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  border-bottom: 3px solid var(--color-primario);
  padding-bottom: 0.6rem;
}

.tarjeta-info h6 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--color-primario);
  text-transform: uppercase;
}

/* Texto */
.tarjeta-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tarjeta-info p:hover {
  color: var(--color-primario);
  transform: translateX(4px);
}

/* Horario principal */
.horario-destacado {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0.25rem 0 0.75rem 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Separador */
.tarjeta-info hr {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  margin: 1.8rem 0;
}

/* Íconos */
.tarjeta-info i {
  color: var(--color-primario);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

/* Hover global */
.tarjeta-info:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 15, 40, 0.55);
}

/* Responsive */
@media (max-width: 768px) {
  .tarjeta-info {
    padding: 2rem;
    position: static;
    margin-top: 2rem;
  }
}



/* Contenedor principal */
.seccion-galeria {
  max-width: 95%;
  margin: 60px auto;
  padding: 4rem 2rem;
  border-radius: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Encabezado independiente */
.encabezado-galeria {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.encabezado-galeria h2.titulo-galeria {
   display: inline-block; /* importante para textos cortos */
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900; /* más ancho */
  background: linear-gradient(90deg, var(--color-primario), var(--color-secundario));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 1px; /* opcional */

  
}

.encabezado-galeria h2.titulo-galeria::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: #ae414e;
  margin: 10px auto 0 auto;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.encabezado-galeria h2.titulo-galeria:hover::after {
  width: 100px;
}

.descripcion-galeria {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secundario);
  border-bottom: 3px solid var(--color-secundario);
  transition: all 0.3s ease;
  cursor: default;
}

/* Grid de imágenes */
.contenedor-galeria {
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px; /* Altura uniforme */
  gap: 15px;
}

/* Patrón fijo: fila 1 -> 2+1, fila 2 -> 1+2 */
.contenedor-galeria .imagen-galeria:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
.contenedor-galeria .imagen-galeria:nth-child(2) { grid-column: 3 / span 1; grid-row: 1; }
.contenedor-galeria .imagen-galeria:nth-child(3) { grid-column: 1 / span 1; grid-row: 2; }
.contenedor-galeria .imagen-galeria:nth-child(4) { grid-column: 2 / span 2; grid-row: 2; }

/* Estilos de cada imagen */
.imagen-galeria {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.imagen-galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.imagen-galeria:hover {
  transform: scale(1.01);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  filter: brightness(1.05);
}

/* Responsividad */
@media (max-width: 768px) {
  .contenedor-galeria {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .contenedor-galeria .imagen-galeria {
    grid-column: span 1 !important;
    grid-row: auto !important;
    height: 250px;
  }
}











    /* TARJETAS DE EVENTOS */
.tarjeta-evento {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45), rgba(15, 15, 25, 0.75)),
              var(--bg-img, none);
  background-size: cover;
  background-position: center;
  transition: all 0.45s ease;
  text-align: left;
  box-shadow: 0 8px 24px rgba(2, 2, 6, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tarjeta-evento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(0,0,0,0.3));
  mix-blend-mode: overlay;
  pointer-events: none;
}

.tarjeta-evento > * {
  position: relative;
  z-index: 1;
}

/* Hover: cambia fondo a degradado oscuro y texto a oscuro */
.tarjeta-evento:hover {
  background: linear-gradient(135deg, rgba(250,250,250,0.95), rgba(230,230,240,0.9));
  color: var(--color-oscuro);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.tarjeta-evento:hover h5,
.tarjeta-evento:hover p,
.tarjeta-evento:hover .icono-evento {
  color: var(--color-oscuro);
  text-shadow: none;
}

/* CONTENIDO */
.cuerpo-tarjeta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.75rem;
}

.tarjeta-evento h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.tarjeta-evento p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
  color: rgba(255,255,255,0.95);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

.tarjeta-evento .boton {
  margin-top: 1rem;
  border-width: 2px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
}

.icono-evento {
  font-size: 2.5rem;
  color: var(--color-claro);
  opacity: 0.9;
  transition: color 0.3s ease;
}

/* Transición suave entre imágenes */
.tarjeta-evento:hover {
  background-blend-mode: multiply;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .columna {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

    /* MISION VISION */
.seccion-mision {
  max-width: 95%;
  margin: 60px auto;
  padding: 5rem 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #eeeeee 100%);
  box-shadow: 3px 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.seccion-mision:hover {
  box-shadow: 5px 8px 15px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.contenedor-mision {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.encabezado-mision {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.encabezado-mision h2.titulo-mision {
    display: inline-block; /* importante para textos cortos */
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900; /* más ancho */
  background: linear-gradient(90deg, var(--color-primario), var(--color-secundario));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 1px; /* opcional */
}

.encabezado-mision h2.titulo-mision::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ae414e;
  margin-top: 8px;
  border-radius: 3px;
}

.descripcion-mision {
  margin-bottom: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secundario);
  border-bottom: 3px solid var(--color-secundario);
 
  transition: all 0.3s ease;
  cursor: default;
}

.fila-mision {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.tarjeta-mision {
  background: var(--color-claro);
  color: var(--color-secundario);
  padding: 2rem;
  border-radius: 16px;
  border-bottom: 6px solid var(--color-secundario);
  flex: 1 1 30%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.tarjeta-mision:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.tarjeta-mision h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #d21f30;
  border-bottom: 2px solid var(--color-secundario);
  padding-bottom: 0.5rem;
}

.tarjeta-mision p {
  line-height: 1.6;
}










    /* CONTACTO */
/* CONTACTO GENERAL */
.contacto {
  background: linear-gradient(135deg, #ffffff 0%, #f7f8fb 60%, #eef0f7 100%);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  align-items: start;
}

/* INFORMACIÓN DE CONTACTO */
.contacto-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.texto-descriptivo {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.info-contacto {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.info-contacto li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  border-bottom: 1px solid rgba(32, 41, 90, 0.08);
  transition: all 0.3s ease;
}

.info-contacto li:hover {
  color: var(--color-secundario);
  transform: translateX(6px);
}

.info-contacto i {
  color: var(--color-secundario);
  font-size: 1.25rem;
  width: 26px;
}

/* FORMULARIO */
.formulario {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 1rem;
}

.campo-formulario {
  padding: 14px 16px;
  border: 2px solid rgba(32, 41, 90, 0.15);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.campo-formulario:focus {
  outline: none;
  border-color: var(--color-secundario);
  box-shadow: 0 0 0 4px rgba(32, 41, 90, 0.08);
  transform: translateY(-2px);
}

textarea.campo-formulario {
  resize: vertical;
  min-height: 130px;
}

.boton-primario-1 {
  align-self: flex-end;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-fondo) 0%, var(--color-secundario) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(32, 41, 90, 0.25);
  transition: all 0.35s ease;
}

.boton-primario-1:hover {
  color: var(--color-blanco);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(32, 41, 90, 0.35);
  background: linear-gradient(135deg, var(--color-secundario) 0%, var(--color-primario) 100%);
}

/* MAPA */
.contacto-mapa {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mapa-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(32, 41, 90, 0.15);
  border: 3px solid var(--color-secundario);
}

.mapa-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contacto {
    padding: 3rem 1.5rem;
  }

  .boton-primario-1 {
    align-self: stretch;
    text-align: center;
  }

  .info-contacto li {
    font-size: 0.95rem;
  }
}


    /* BOTONES FLOTANTES */
    .sociales-fijos {
      position: fixed;
      right: 1rem;
      bottom: 1.25rem;
      z-index: 1050;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .sociales-fijos .boton {
      border-radius: 50%;
      width: 48px;
      height: 48px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(5,4,12,0.18);
      font-size: 1.5rem;
    }

    .sociales-fijos .facebook {
      background: white;
      color: #1877f2;
    }

    .sociales-fijos .whatsapp {
      background: #25D366;
      color: white;
    }



        /* FOOTER ESTRUCTURADO */
.pie-pagina {
  width: 95%;
  margin: 0 auto;
  background-color: var(--color-secundario);
  color: var(--color-claro);
  padding: 3rem 1.5rem;
  font-family: 'Lora', serif;
  border-radius: 20px 20px 0 0;
}

/* Contenedor de columnas */
.contenedor-footer {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cada columna */
.footer-columna {
  flex: 1 1 30%;
  min-width: 220px;
}

/* Logo */
.logo-footer {
  max-width: 70px;
  background-color: orange;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Títulos de sección */
.footer-columna h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primario);
}

/* Párrafos y enlaces */
.footer-columna p, .footer-columna a {
  margin-bottom: 8px;
  color: var(--color-claro);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-columna a:hover {
  color: var(--color-acento);
}

/* Botones sociales */
.botones-sociales {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.boton-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: var(--color-claro);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.boton-social:hover {
  transform: scale(1.1);
  color: var(--color-blanco);
}

.boton-social.facebook:hover { background-color: #1877f2; }
.boton-social.whatsapp:hover { background-color: #25d366; }

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

/* Responsividad */
@media (max-width: 768px) {
  .contenedor-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-columna {
    flex: 1 1 100%;
  }

  .botones-sociales {
    justify-content: center;
  }
}






    /* UTILIDADES */
    .texto-centro {
      text-align: center;
    }

    .texto-derecha {
      text-align: right;
    }

    .mb-1 { margin-bottom: 0.5rem; }
    .mb-2 { margin-bottom: 1rem; }
    .mb-3 { margin-bottom: 1.5rem; }
    .mb-4 { margin-bottom: 2rem; }
    .mb-5 { margin-bottom: 3rem; }

    .mt-3 { margin-top: 1.5rem; }
    .mt-4 { margin-top: 2rem; }

    .oculto-movil {
      display: block;
      height: 400px;
    }

    .visible-movil {
      display: none;
    }

    @media (max-width: 768px) {
      .oculto-movil {
        display: none;
      }

      .visible-movil {
        display: block;
      }
    }

































/* ============================================
   MEJORAS RESPONSIVE - TABLET Y MÓVIL
   Solo afecta pantallas menores a 992px
   ============================================ */

/* ========== TABLET (768px - 992px) ========== */
@media (min-width: 1000px) and (max-width: 1000px) {
  
  /* Navbar */
  .barra-navegacion {
    height: 80px;
    width: 98%;
  }

  .logo-navbar {
    height: 60px;
    width: 60px;
  }

  .texto-marca h1 {
    font-size: 1.1rem;
  }

  .texto-marca span {
    font-size: 0.8rem;
  }

  /* Hero */
  .hero {
    margin-top: 100px;
    padding: 3rem 1.5rem;
    max-height: none;
  }

  .hero h1 {
    font-size: 2.5rem;
    
  }

  .hero p.texto-destacado {
    font-size: 1.1rem;
  }

  .lista-caracteristicas li {
    font-size: 1rem;
  }

  /* Columnas en tablet */
  .col-mitad {
    width: 50%;
  }

  .col-tercio {
    width: 50%;
  }

  .col-cuarto {
    width: 50%;
  }

  .col-dos-tercios {
    width: 100%;
  }

  .col-tercio-tarjeta {
    width: 50%;
  }

  /* Secciones */
  .seccion {
    padding: 4rem 0;
  }

  /* Encabezado de sección */
  .encabezado-seccion {
    flex-direction: row;
    align-items: center;
  }

  /* Tarjetas destacadas */
  .imagen-tarjeta {
    height: 200px;
  }

  /* Pestañas del menú */
  .pestanas {
    gap: 8px;
  }

  .pestana {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Tarjeta info lateral */
  .tarjeta-info {
    margin-top: 2rem;
    position: static;
  }

  /* Eventos */
  .tarjeta-evento {
    padding: 2rem;
    min-height: 280px;
  }

  .icono-evento {
    font-size: 2.2rem;
  }

  /* Contacto */
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ========== MÓVIL (menos de 768px) ========== */
@media (max-width: 767px) {
  
  /* Contenedor general */
  .contenedor {
    width: 100%;
    padding: 0 10px;
  }

  /* Navbar móvil */
  .barra-navegacion {
    height: 70px;
    width: 98%;
    padding: 0.5rem 1rem;
  }

  .contenedor-nav {
    padding: 0 10px;
  }

  .logo-navbar {
    height: 50px;
    width: 50px;
  }

  .texto-marca h1 {
    font-size: 1rem;
  }

  .texto-marca span {
    font-size: 0.75rem;
  }

  .menu-toggle {
    font-size: 1.3rem;
  }

  .navegacion-principal {
    position: fixed;
    top: 80px;
    width: 98%;
    /* FIX: Ocultar completamente el menú al cargar */
    max-height: 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .navegacion-principal.abierto {
    max-height: 600px !important;
    opacity: 1;
    visibility: visible;
  }

  .enlace-nav {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .botones-sociales {
    flex-direction: row;
    gap: 15px;
    width: 100%;
    justify-content: center;
  }

  /* Hero móvil */
  .hero {
    margin-top: 85px;
    padding: 2.5rem 1.5rem;
    width: 98%;
    border-radius: 15px;
    max-height: none;
    min-height: auto;
  }

  .hero .fila {
    margin: 0;
  }

  .hero .columna {
    padding: 0;
    display: flex;
    align-items: center;flex-direction: column;
  }

  .insignia-personalizada {
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.5rem;
    text-align: center;

  }
  .fa-pepper-hot{
    text-align: center;

  }
  .hero h1 {
    width: 100%;
    text-align:  center;
    margin-bottom: 1rem;
    
  }

  .hero p.texto-destacado {
    font-size: 0.7rem;

    text-align:  center;
  }

  .lista-caracteristicas {
  }

  .lista-caracteristicas li {
    font-size: 0.80rem;

  }

  .lista-caracteristicas li i {
    font-size: 0.7rem;
  }

  .grupo-botones {
    flex-direction: column;
    width: 100%;
  }

  .grupo-botones .boton {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
  .contenedor-imagen-hero{
    margin-top: 10px;
  }
  .contenedor-imagen-hero img{
    object-fit: cover;
  }
  /* Secciones móvil */
  .seccion {
    padding: 3rem 0;
    margin: 30px auto;
    width: 98%;
    border-radius: 15px;
  }

  .titulo-seccion {
    font-size: 1.8rem;
  }

  .titulo-seccion::after {
    width: 50px;
    height: 2px;
  }

  /* Nosotros */
  .texto-destacado {
    font-size: 1rem;
  }

  .testimonio {
    padding: 1rem;
    margin-top: 1rem;
  }

  .contenedor-imagen {
    margin-top: 1.5rem;
  }

  /* Destacados móvil */
  .encabezado-seccion {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  .encabezado-seccion .boton {
    width: 100%;
  }

  .col-cuarto {
    width: 100%;
  }

  .tarjeta {
    margin-bottom: 1.5rem;
  }

  .imagen-tarjeta {
    height: 200px;
  }

  .cuerpo-tarjeta {
    padding: 1.25rem;
  }

  .tarjeta h5,
  .titulo-tarjeta-destacado {
    font-size: 1.1rem;
  }

  .texto-apagado-1 {
    font-size: 0.9rem;
  }

  .pie-tarjeta {
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .pie-tarjeta .boton {
    width: 100%;
    text-align: center;
  }

  /* Menú móvil */
  .col-dos-tercios,
  .col-tercio {
    width: 100%;
  }

  .pestanas {
    display: none !important;
  }

  .acordeon {
    display: block !important;
  }

  .item-acordeon {
    margin-bottom: 12px;
  }

  .encabezado-acordeon {
    padding: 15px 18px;
    font-size: 1rem;
  }

  .lista-menu {
    padding: 0.5rem;
  }

  .lista-menu li {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 8px;
  }

  .lista-menu strong {
    font-size: 1rem;
  }

  .lista-menu .precio {
    font-size: 1.1rem;
    align-self: flex-end;
  }

  /* Tarjeta info móvil */
  .tarjeta-info {
    margin-top: 2rem;
    padding: 1.8rem;
    position: static;
    /* FIX: Prevenir overflow de texto largo */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }

  .tarjeta-info h5 {
    font-size: 1.3rem;
  }

  .tarjeta-info h6 {
    font-size: 1rem;
  }

  .horario-destacado {
    font-size: 1.2rem;
  }

  /* FIX: Ajustar texto largo en info de contacto */
  .tarjeta-info p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  .tarjeta-info p i {
    flex-shrink: 0;
  }

  /* Eventos móvil */
  .col-tercio-tarjeta {
    width: 100%;
  }

  .descripcion-seccion {
    font-size: 0.95rem;
    padding: 8px 12px;
    text-align: center;
  }

  .tarjeta-evento {
    padding: 2rem 1.5rem;
    min-height: 300px;
    margin-bottom: 1.5rem;
  }

  .tarjeta-evento h5 {
    font-size: 1.3rem;
  }

  .tarjeta-evento p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .icono-evento {
    font-size: 2rem;
  }

  .tarjeta-evento .boton {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  /* Contacto móvil */
  .contacto {
    padding: 3rem 1rem;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .texto-descriptivo {
    font-size: 1rem;
  }

  .info-contacto li {
    font-size: 0.9rem;
    padding: 0.6rem 0;
    flex-wrap: wrap;
  }

  .info-contacto i {
    font-size: 1.1rem;
  }

  .formulario {
    gap: 14px;
  }

  .campo-formulario {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  textarea.campo-formulario {
    min-height: 120px;
  }

  .boton-primario-1 {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
  }

  .mapa-responsive {
    padding-bottom: 75%;
    border-width: 2px;
  }

  /* Botones sociales flotantes */
  .sociales-fijos {
    right: 0.75rem;
    bottom: 1rem;
    gap: 0.4rem;
  }

  .sociales-fijos .boton {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  /* Footer móvil */
  .pie-pagina {
    padding: 2rem 0;
  }

  .pie-pagina .fila {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .pie-pagina p {
    font-size: 0.9rem;
  }

  .pie-pagina .botones-sociales {
    justify-content: center;
    margin-left: 0;
  }

  .pie-pagina .boton-social {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ========== MÓVIL PEQUEÑO (menos de 480px) ========== */
@media (max-width: 480px) {
  
  .hero h1 {
    font-size: 1.4rem;
    width: 100vw;
  }

  .hero p.texto-destacado {
    font-size: 0.86rem;
    font-weight: bold;
    text-align: justify;
  }

  .lista-caracteristicas li {
    font-size: 0.8rem;
  }

  .titulo-seccion {
    font-size: 1.6rem;
  }

  .imagen-tarjeta {
    height: 180px;
  }

  .tarjeta-evento {
    padding: 1.5rem 1rem;
    min-height: 280px;
  }

  .tarjeta-evento h5 {
    font-size: 1.2rem;
  }

  .tarjeta-evento p {
    font-size: 0.9rem;
  }

  .contacto {
    padding: 2.5rem 0.75rem;
  }

  .tarjeta-info {
    padding: 1.5rem;
  }
}

/* ========== MODO LANDSCAPE MÓVIL ========== */
@media (max-width: 767px) and (orientation: landscape) {
  
  .hero {
    padding: 2rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .lista-caracteristicas {
    margin-bottom: 1rem;
  }

  .grupo-botones {
    flex-direction: row;
    gap: 10px;
  }

  .grupo-botones .boton {
    width: auto;
    padding: 10px 20px;
  }

  .tarjeta-evento {
    min-height: 260px;
  }
}

/* ========== MEJORAS GENERALES TOUCH ========== */
@media (hover: none) and (pointer: coarse) {
  
  /* Aumentar áreas táctiles */
  .boton {
    min-height: 44px;
    padding: 12px 24px;
  }

  .enlace-nav {
    min-height: 44px;
    padding: 12px 20px;
  }

  .boton-social {
    min-width: 44px;
    min-height: 44px;
  }

  .pestana {
    min-height: 44px;
  }

  .encabezado-acordeon {
    min-height: 50px;
  }

  /* Eliminar efectos hover en touch */
  .tarjeta:hover {
    transform: none;
  }

  .lista-menu li:hover {
    transform: none;
  }

  .tarjeta-evento:hover {
    transform: none;
  }

  /* Mejorar feedback táctil */
  .boton:active {
    transform: scale(0.98);
  }

  .enlace-nav:active {
    opacity: 0.7;
  }
}

/* ========== ACCESIBILIDAD RESPONSIVE ========== */
@media (max-width: 767px) {
  
  /* Mejorar legibilidad */
  body {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
  }

  /* Prevenir zoom en inputs */
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 16px;
  }

  /* Espaciado mejorado para táctil */
  .lista-nav li {
    margin-bottom: 5px;
  }

  .info-contacto li {
    min-height: 44px;
  }
}

/* ========== FIX ESPECÍFICOS ========== */
@media (max-width: 767px) {
  
  /* Prevenir scroll horizontal */
  body {
    overflow-x: hidden;
  }

  .fila {
    margin: 0;
  }

  .columna {
    padding: 10px 0;
  }

  /* Ajustar imágenes */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Contenedores full-width en móvil */
  .seccion,
  .hero,
  .barra-navegacion {
    margin-left: auto;
    margin-right: auto;
  }

  /* Mejorar contraste en móvil */
  .texto-apagado,
  .texto-apagado-1 {
    color: rgba(5, 4, 12, 0.75);
  }
}

/* ========== OPTIMIZACIÓN TABLET VERTICAL ========== */
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  
  .col-cuarto {
    width: 50%;
  }

  .col-tercio-tarjeta {
    width: 100%;
  }

  .tarjeta-evento {
    min-height: 300px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== OPTIMIZACIÓN TABLET HORIZONTAL ========== */
@media (min-width: 768px) and (max-width: 992px) and (orientation: landscape) {
  
  .col-cuarto {
    width: 50%;
  }

  .col-tercio-tarjeta {
    width: 50%;
  }

  .hero {
    max-height: none;
  }
}