* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #333; line-height: 1.6; background: #f4f4f4; scroll-behavior: smooth; }

/* Header y Hero */
header { 
    height: 80vh; 
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero { text-align: center; background: rgba(0,0,0,0.2); padding: 20px; border-radius: 10px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 10px; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
.hero p { font-size: 1.5rem; margin-bottom: 10px; }
.main-price { font-size: 2.5rem; font-weight: bold; color: #f1c40f; margin-bottom: 20px; }

/* Botones */
.btn-main { padding: 15px 30px; background: #bc258b; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; transition: 0.3s; display: inline-block; }
.btn-main:hover { background: #9527a8; }

/* Contenedor principal */
.container { max-width: 1100px; margin: 40px auto; padding: 20px; background: white; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Ficha técnica */
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
.spec-card { background: #f2f4f4; padding: 20px; border-radius: 8px; text-align: center; border: 1px solid #bc258b; }

/* Galería */
.gallery { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 15px; 
    padding: 20px 0;
}
.gallery img { 
    width: 100%; 
    height: 250px; 
    object-fit: cover; 
    border-radius: 8px; 
    transition: 0.5s; 
    opacity: 0; /* Empiezan invisibles para el efecto scroll */
    transform: translateY(20px); 
}

/* Videos */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 20px; }
.video-item { background: #eee; padding: 15px; border-radius: 8px; text-align: center; }
.video-item video { width: 100%; border-radius: 5px; }

footer { padding: 60px 20px; background: #1b1b1b; color: white; text-align: center; margin-top: 50px; }

/* Estilos para el Lightbox (Imagen ampliada) */
.modal {
    display: none; /* Escondido por defecto */
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: zoom-out;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.1)} 
    to {transform: scale(1)}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.gallery img {
    cursor: zoom-in; /* Cambia el cursor para indicar que se puede ampliar */
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
}
