/* Fuente personalizada */
.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Overlay principal */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; 
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenido del overlay */
.overlay-content {
    text-align: center;
    color: rgb(0, 0, 0);
    max-width: 800px;
    padding: 2rem;
}

/* Animación del GIF */
.gif-animation {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem auto;
    /* Sin sombras, bordes ni efectos */
}

/* Texto del overlay */
.overlay-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Subtítulo */
.overlay-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0.5rem 0 0 0;
    opacity: 0.8;
}

/* Contador regresivo */
.contador-regresivo {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgb(17, 40, 56) !important;
    padding: 10px 15px !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    z-index: 10000 !important;
    font-family: 'Inter', sans-serif !important;
}

/* Responsive */
@media (max-width: 768px) {
    .overlay-content {
        padding: 1rem;
        max-width: 90%;
    }
    
    .gif-animation {
        width: 150px;
        height: 150px;
    }
    
    .overlay-text {
        font-size: 1.2rem;
    }
    
    .contador-regresivo {
        top: 10px !important;
        right: 10px !important;
        font-size: 1rem !important;
        padding: 8px 12px !important;
    }
}
