/* ===== Footer ===== */
#contacto {
  background: #34495e;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: "Segoe UI", Arial, sans-serif;
}

#contacto .footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

/* Cada columna */
#contacto .footer-column {
  flex: 1; /* Tres columnas iguales */
  min-width: 220px; /* Evita que se achique demasiado */
}

#contacto .footer-column h1,
#contacto .footer-column h3 {
  color: #e8b339;
  margin-bottom: 15px;
}

#contacto .footer-column p {
  color: #fff;
  line-height: 1.6;
  font-size: 0.95rem;
}

#contacto .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#contacto .footer-column ul li {
  margin-bottom: 10px;
}

#contacto .footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

#contacto .footer-column ul li a:hover {
  color: #f5c65a;
}

#contacto .footer-column ul li i {
  margin-right: 8px;
  color: #f5c65a;
}

/* Footer inferior */
#contacto .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #ccc;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  #contacto .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  #contacto .footer-column {
    flex: 1 1 100%;
  }
}


/* ===== Responsive ===== */
@media (max-width: 768px) {
  #contacto .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  #contacto .footer-section {
    flex: 1 1 100%;
  }

  #contacto .footer-section ul li i {
    display: inline-block;
  }
}

     
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}



        .back-btn {
            background: #f5c65a;
            color: #2b3a4a;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #e8b339;
            transform: translateY(-2px);
        }

        /* Hero Infantil */
        .hero-infantil {
            background: linear-gradient(135deg, #6a4c93, #8a6cb3);
            padding: 80px 0;
            text-align: center;
            margin-top:-3rem;
        }

        .hero-infantil h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #f5c65a;
        }

        .hero-infantil p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            color: #fff;
        }

        /* Sección Principal */
        .contenido-principal {
            padding: 60px 0;
        }

        .grid-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .texto-destacado h2 {
            font-size: 2.5rem;
            color: #f5c65a;
            margin-bottom: 20px;
        }

        .texto-destacado p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #d0d8e0;
        }
         .texto-destacado p strong {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #f5c65a;
        }


        /* Galería de Personajes */
        .galeria-personajes {
            background: #3c5870;
            padding: 60px 0;
        }

        .galeria-personajes h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #f5c65a;
            margin-bottom: 40px;
        }

        .personajes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .personaje-card {
            background: #2b3a4a;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .personaje-card:hover {
            transform: translateY(-5px);
        }

        .personaje-card img {
            width: 100%;
            height: 200px;
            object-fit: fill;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .personaje-card h3 {
            color: #f5c65a;
            font-size: 1.3rem;
        }

        /* CTA */
        .cta-infantil {
            background: linear-gradient(135deg, #f5c65a, #e8b339);
            padding: 60px 0;
            text-align: center;
        }

        .cta-infantil h2 {
            color: #2b3a4a;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-infantil .btn-grande {
            background: #6a4c93;
            color: white;
            padding: 15px 30px;
            font-size: 1.2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-infantil .btn-grande:hover {
            background: #5a3c83;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .grid-layout {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-infantil h1 {
                font-size: 2.2rem;
            }

            .personajes-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }

     
          
.nav-links li a[href="/inf.html"] {
      	background: linear-gradient(135deg, #f5c65a 0%, #e8b339 100%);
      	color: #2c3e50;
      	font-weight: 700;
      	border: 1px solid #fff;
      	box-shadow: 0 4px 8px rgba(245, 198, 90, 0.3);
      }
      
      .nav-links li a[href="/inf.html"]:hover {
      	background: linear-gradient(135deg, #e8b339 0%, #f5c65a 100%);
      	transform: translateY(-3px);
      	box-shadow: 0 6px 12px rgba(245, 198, 90, 0.5);
      }
      
      .nav-links li a[href="/restbar.html"] {
      	background: linear-gradient(135deg, #ff7b00 0%, #ff3d00 100%);
      	color: #fff;
      	font-weight: 700;
      	border: 1px solid #fff;
      	box-shadow: 0 4px 10px rgba(255, 100, 0, 0.4);
      }
      
      .nav-links li a[href="/restbar.html"]:hover {
      	background: linear-gradient(135deg, #ff3d00 0%, #ff7b00 100%);
      	transform: translateY(-3px);
      	box-shadow: 0 6px 14px rgba(255, 80, 0, 0.6);
      }      




/* Imagen preview */
.ejemplo-imagen {
    cursor: zoom-in;
    transition: transform 0.3s ease;
    text-align: center;
    margin: 20px auto;
    max-width: 100%; /* 👈 Evitar que se salga del contenedor */
}

.ejemplo-imagen img {
    width: 400px;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    object-fit: contain;
    background: #34495e;
    border: 3px solid #f5c65a;
    transition: all 0.3s ease;
}

/* Para tablets */
@media (max-width: 1024px) {
    .ejemplo-imagen img {
        width: 350px;
        height: 260px;
    }
}

/* Para celulares grandes */
@media (max-width: 768px) {
    .ejemplo-imagen img {
        width: 320px;
        height: 240px;
    }
}

/* Para celulares medianos */
@media (max-width: 480px) {
    .ejemplo-imagen {
        margin: 15px auto;
        padding: 0 10px; /* 👈 Agregar padding lateral */
    }
    
    .ejemplo-imagen img {
        width: 100%; /* 👈 Usar ancho completo del contenedor */
        max-width: 300px; /* 👈 Pero con máximo */
        height: auto; /* 👈 Altura automática */
        min-height: 200px; /* 👈 Altura mínima */
        border-width: 2px; /* 👈 Borde más delgado */
    }
}

/* Para celulares pequeños */
@media (max-width: 360px) {
    .ejemplo-imagen img {
        max-width: 280px;
        min-height: 180px;
        border-radius: 12px;
    }
    
    .ejemplo-imagen p {
        font-size: 0.9rem; /* 👈 Texto más pequeño */
    }
}

/* Para orientación horizontal en celulares */
@media (max-width: 768px) and (orientation: landscape) {
    .ejemplo-imagen img {
        width: 250px;
        height: 180px;
    }
}
.ejemplo-imagen:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(245, 198, 90, 0.3);
}

/* Modal mejorado */
.modal-imagen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
    padding-top: 120px;
    padding-bottom: 120px;
}

.modal-contenido {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.modal-contenido img {
    max-width: 90vw;
    max-height: none;
    border-radius: 10px;
    box-shadow: 0 0 60px rgba(245, 198, 90, 0.8);
    transition: transform 0.3s ease-out;
    transform-origin: top center;
    cursor: grab;
}

.modal-contenido img:active {
    cursor: grabbing;
}

/* CONTROLES DE ZOOM ABAJO */
.controles-zoom {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 30px;
    border-radius: 35px;
    display: flex;
    gap: 12px;
    z-index: 2002;
    backdrop-filter: blur(15px);
    border: 2px solid #f5c65a;
}

.btn-zoom {
    background: #f5c65a;
    color: #2b3a4a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-zoom:hover {
    background: #e8b339;
    transform: scale(1.15);
}

.btn-centrar {
    background: #6a4c93;
    color: white;
    margin-left: 10px;
}

.btn-centrar:hover {
    background: #5a3c83;
}

.cerrar-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #f5c65a;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2003;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid #f5c65a;
}

.cerrar-modal:hover {
    background: rgba(245, 198, 90, 0.95);
    color: #2b3a4a;
    transform: scale(1.1);
}

.indicador-zoom {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #f5c65a;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2001;
    display: none;
    border: 1px solid #f5c65a;
}
 
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.texto-presentacion {
    padding: 20px;
}

.texto-presentacion h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    background: #f5c65a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.texto-presentacion .descripcion-principal {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.texto-presentacion .descripcion-principal strong {
    color: #e74c3c;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.ejemplo-imagen {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
}

/* IMAGEN MINI COMPLETA - sin recortar */
.ejemplo-imagen img {
    width: 280px; /* Tamaño fijo pequeño */
    height: auto; /* Altura automática para mantener proporción */
    max-height: 200px; /* Altura máxima */
    object-fit: contain; /* Muestra la imagen completa */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.ejemplo-imagen:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.instruccion-interactiva {
    margin-top: 15px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 50px;
    border: 2px dashed #3498db; /* Azul en lugar de dorado */
    color: #3498db; /* Azul en lugar de dorado */
    background: rgba(52, 152, 219, 0.1); /* Azul en lugar de dorado */
}

.mensaje-personalizacion {
    margin-top: 10px;
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(52, 152, 219, 0.3);
    text-align: center;
}

/* Modal - IMAGEN GRANDE solo en el modal */
.modal-contenido img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .texto-presentacion h2 {
        font-size: 1.8rem;
    }
    
    .texto-presentacion .descripcion-principal {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .ejemplo-imagen img {
        width: 250px; /* Un poco más pequeño en móvil */
        max-height: 180px;
    }
}



.btn-text {
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive para el botón */
@media (max-width: 768px) {
    .btn-disenos-disponibles {
        padding: 15px 25px;
        font-size: 1.1rem;
        gap: 10px;
        max-width: 350px;
    }
    
    .btn-disenos-disponibles i {
        font-size: 1.3rem;
    }
}

/* Contenedor para los botones lado a lado */
.btn-container {
    display: flex;
    gap: 20px; /* espacio entre botones */
    justify-content: center; /* centra los botones */
    align-items: stretch; /* misma altura */
    flex-wrap: nowrap; /* fuerza que estén en la misma línea */
    margin-top: 40px;
}

/* Base común para ambos botones */
.btn-disenos-disponibles,
.btn-simulacion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 25px; /* menos padding para que no sean tan largos */
    border: none;
    border-radius: 60px;
    font-size: 1.2rem; /* un poquito más pequeño */
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap; /* evita que el texto haga salto de línea */
    max-width: 300px; /* ancho máximo */
    min-width: 200px; /* ancho mínimo */
    flex: 1; /* para que tomen el mismo alto */
}

/* Botón 1 */
.btn-disenos-disponibles {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53, #ff6b6b);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: gradientShift 3s ease infinite;
}

/* Botón 2 */
.btn-simulacion {
    background: linear-gradient(135deg, #6bafff, #53c8ff, #6bafff);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(107, 175, 255, 0.4);
    animation: gradientShift 3s ease infinite;
}

/* Efectos hover y animación comunes */
.btn-disenos-disponibles::before,
.btn-simulacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-disenos-disponibles:hover::before,
.btn-simulacion:hover::before {
    left: 100%;
}

.btn-disenos-disponibles:hover,
.btn-simulacion:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-disenos-disponibles:active,
.btn-simulacion:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-disenos-disponibles i,
.btn-simulacion i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn-disenos-disponibles:hover i:last-child,
.btn-simulacion:hover i:last-child {
    transform: translateX(5px);
}

/* ================== RESPONSIVE ================== */

/* Móviles pequeños (≤ 480px) */
@media (max-width: 480px) {
    .btn-container {
        flex-direction: column;   /* apila los botones */
        gap: 15px;                /* menos espacio entre ellos */
        margin-top: 20px;
    }

    .btn-disenos-disponibles,
    .btn-simulacion {
        width: 100%;              /* ocupan todo el ancho */
        max-width: 100%;
        min-width: auto;
        padding: 14px 18px;       /* menos padding para que no queden enormes */
        font-size: 1rem;          /* texto más chico */
        border-radius: 14px;      /* bordes menos redondeados */
    }

    .btn-disenos-disponibles i,
    .btn-simulacion i {
        font-size: 1.2rem;
    }
}

/* Tablets (481px – 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .btn-container {
        flex-direction: column;   /* todavía apilados */
        gap: 18px;
    }

    .btn-disenos-disponibles,
    .btn-simulacion {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 16px 20px;
        font-size: 1.1rem;
        border-radius: 18px;
    }

    .btn-disenos-disponibles i,
    .btn-simulacion i {
        font-size: 1.3rem;
    }
}

/* Laptops pequeñas (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .btn-container {
        gap: 20px;  /* igual que desktop pero con un poco más de aire */
    }

    .btn-disenos-disponibles,
    .btn-simulacion {
        padding: 16px 22px;
        font-size: 1.15rem;
    }
}
 @media (max-width: 768px) {
   
     
      	.hero-content h1 {
      		font-size: 2rem;
      	}
      	.hero .about-image {
      		flex-direction: column;
      	}
      	.event-list ul {
      		flex-direction: column;
      		align-items: center;
      	}
      	.steps {
      		flex-direction: column;
      	}
      }
      
