main {
    background: linear-gradient(180deg, #415b66 0%, #d7feff 10%, #526d6e 100%) !important;
    position: relative;
}

#canvas_fondo_2 {
    display: block; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; 
    z-index: 0;
    pointer-events: none; 
    filter: blur(4px);
    -webkit-filter: blur(4px);
    mix-blend-mode: screen;
}

.producto-main{
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 30px;
    overflow: hidden;
    height: 100vh;
    background: transparent !important;
    z-index: 1;
}

.btn button{
    border: none;
    background-color: #0c6ceb;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 2px;
    padding: 12px 25px;
    border-radius: 8px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn button:hover {
    background-color: #ffffff;
    color: #000000;
    letter-spacing: 3px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.descripcion p{
    color: white;
    text-shadow: 3px 2px 2px #3D3D3D;
}

.descripcion ul li{
    color: white;
    text-shadow: 3px 2px 2px #3D3D3D;
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
}

#verOpciones {
    border: none !important;
    background-color: #0c6ceb !important;
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: bold !important;
    cursor: pointer !important;
    letter-spacing: 2px !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    transition: all 0.4s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

#verOpciones:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    letter-spacing: 3px !important;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2) !important;
}

.opcion:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#carruselPrincipal, 
.descripcion,
.opciones h2,
.opciones-grid {
    position: relative;
    z-index: 2; 
}

.opciones {
    position: relative;
    background-color: transparent !important;
    z-index: 1; 
}

h2,h1{
    background-image: linear-gradient(90deg, #ff6f00 0%, #ffca28 35%, #fffde7 70%, #ff6f00 100%) !important; 
    background-size: 200% 100%;
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    animation: tituloGradiente 5s linear infinite; 
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.8)); 
    text-shadow: 0px 0px 12px rgba(0, 229, 255, 0.3); 
}

@keyframes tituloGradiente { 
    0% { background-position: 0% 50%; } 
    100% { background-position: 200% 50%; } 
}
.opcion{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.171) !important; 
    border: 1px solid rgba(255, 255, 255, 0.1) !important; 
    border-radius: 20px;
    box-sizing: border-box !important;
}

.opcion-contenido strong, .opcion-descripcion{
    color: white;
}

/* Para que tape las burbujas */
footer {
    position: relative;
    z-index: 10; 
    background-color: #000000;
}

/* 1. El cristal principal del contenedor del carrusel */
.glassMorphCarousel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    backdrop-filter: blur(15px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(120%) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4) !important; /* Sombra oscura para que resalte */
}

/* 2. Hacemos que las tarjetas de dentro también sean de cristal sutil */
.glassMorphCarousel .card-producto {
    background: rgba(255, 255, 255, 0.03) !important; 
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 15px;
    padding: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Efecto hover chulo para las tarjetas interiores */
.glassMorphCarousel .card-producto:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-5px);
}

/* 3. Aseguramos que el texto se lea bien sobre el cristal (letras blancas) */
.glassMorphCarousel h5, 
.glassMorphCarousel p {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ==========================================================================
   3. RESPONSIVE
============================================================================= */

/* =========== (MÓVILES Y TABLETS) =========== */

@media screen and (max-width: 991px) {
    
    /* 1. SECCIÓN PRINCIPAL: Apilamos el carrusel y el texto en vertical */
    .producto-main {
        flex-direction: column;
        height: auto !important;
        min-height: 100vh;
        padding: 100px 20px 40px 20px !important;
        text-align: center;
    }

    /* Hacemos que el carrusel y el texto ocupen todo el ancho de la pantalla */
    #carruselPrincipal, 
    .descripcion {
        width: 100%; 
        max-width: 100%;
    }

    /* Separamos el texto del carrusel */
    .descripcion {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
    }

    /* Ajustamos el tamaño de los títulos para que no sean gigantes en el móvil */
    .descripcion h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    /* Mantenemos la lista alineada a la izquierda pero centrada en la pantalla */
    .descripcion ul {
        text-align: left;
        display: inline-block;
        padding-left: 0;
        margin: 20px auto;
    }

    .descripcion ul li {
        margin-bottom: 12px;
    }

    /* 2. SECCIÓN DE OPCIONES: Pasamos a 1 sola columna */
    .opciones {
        padding: 40px 20px;
    }

    .opciones-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .opcion {
        width: 100%;
        margin: 0 auto;
    }

    /* Ajustamos el texto de las opciones */
    .opciones h2 {
        font-size: 1.8rem !important;
    }
}

/* Ajustes extra para móviles muy pequeños */
@media screen and (max-width: 480px) {
    .btn button, button.btn-azul, #verOpciones {
        width: 100%;
        padding: 15px 10px !important;
        font-size: 1rem;
    }
}