/**
 * Popup Inicio - Estilos Frontend
 * @package CDT Popup Inicio
 */

.popup-inicio-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup-inicio-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Popup tipo imagen */
.popup-inicio-content.popup-tipo-imagen {
    padding: 20px;
}

.popup-inicio-img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* Popup tipo texto */
.popup-inicio-content.popup-tipo-texto {
    padding: 40px 30px;
}

.popup-inicio-titulo {
    font-size: 24px;
    margin: 0 0 15px 0;
    color: #333;
    font-weight: 600;
}

.popup-inicio-mensaje {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    color: #666;
}

.popup-inicio-boton {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.popup-inicio-boton:hover {
    background-color: #005a87;
    color: #fff;
}

/* Botón cerrar */
.popup-inicio-close {
    position: absolute;
    top: -12px;
    right: -12px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    background: #000;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    line-height: 1;
}

.popup-inicio-close:hover {
    background: #333;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 600px) {
    .popup-inicio-overlay {
        padding: 15px;
    }

    .popup-inicio-content {
        padding: 25px 20px;
        border-radius: 10px;
    }

    .popup-inicio-content.popup-tipo-texto {
        padding: 30px 20px;
    }

    .popup-inicio-titulo {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .popup-inicio-mensaje {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .popup-inicio-boton {
        padding: 10px 25px;
        font-size: 14px;
    }

    .popup-inicio-close {
        font-size: 26px;
        width: 32px;
        height: 32px;
        top: -10px;
        right: -10px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .popup-inicio-content {
        max-width: 450px;
    }
}