/* General*/
#mensaje-personalizado {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: #f5f0e6; /* Fondo color pergamino */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    z-index: 1000;
    font-family: 'Belleza', sans-serif; /* Aplicar la tipografía Belleza */
    color: #3c3333; /* Color de texto */
}
@media (max-width: 767px) {
    #mensaje-personalizado{
        width: 80%;
    }
}
/* Logo */
#logo-mensaje {
    max-width: 150px;
    margin-bottom: 15px;
}

/* Texto principal */
#texto-mensaje-principal {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #3c3333; 
}

/* Texto secundario */
#texto-mensaje-secundario {
    font-size: 1em;
    margin-bottom: 20px;
    color: #3c3333; 
}

/* Botón de la boutique */
#boton-boutique {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-family: 'Belleza', sans-serif; 
    color: #3c3333; 
    background: #fdf8f2;
    border: 2px solid #3c3333;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Efecto hover en el botón */
#boton-boutique:hover {
    background: #3c3333;
    color: #fdf8f2;
}

/* Texto final */
#texto-final {
    margin-top: 20px;
    font-size: 1em;
    font-style: italic;
    color: #3c3333; 
}

/* Cruz de cierre */
#cerrar-cruz {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2.4em; 
    color: #3c3333; 
    cursor: pointer;
    transition: color 0.3s ease;
}

#cerrar-cruz:hover {
    color: #7a5740; 
}

/* Ocultar mensaje */
.oculto {
    display: none;
}

