/*
 Theme Name: Future Face
 Theme URI: https://futureface.com
 Description: Tema con funcionalidades propias para Future Face
 Author: Pareto Conversion
 Author URI: https://paretoconversion.com
 Template: hello-elementor
 Version: 1.0.0
 Text Domain: future-face
*/

/* Estilos para el Pop-up Conflicto de Marca (THESERA-BIOPEPTIX) */

.thesera-modal-overlay {
    position: fixed; /* Fija el modal en la pantalla */
    z-index: 99999; /* Asegura que esté por encima de todo */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Permite scroll si el contenido es muy largo */
    background-color: rgba(0,0,0,0.6); /* Fondo semi-transparente oscuro */
    display: flex; /* Para centrar el contenido */
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
}

.thesera-modal-content {
    background-color: #fefefe;
    margin: auto; /* Para asegurar el centrado */
    padding: 30px;
    border: 1px solid #888;
    width: 90%; /* Ancho en móviles */
    max-width: 500px; /* Ancho máximo en escritorio */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative; /* Para el botón de cerrar */
    text-align: center; /* Centrar el texto */
}

.thesera-modal-header h2 {
    color: #c0392b; /* Rojo para advertencia */
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.thesera-modal-body p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.thesera-modal-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.thesera-modal-close-button:hover,
.thesera-modal-close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.thesera-modal-close-button-bottom {
    background-color: #3498db; /* Un azul amigable, cámbialo a tus colores de marca */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.thesera-modal-close-button-bottom:hover {
    background-color: #2980b9; /* Un azul más oscuro al pasar el ratón */
}