/*
Theme Name: Hauzi
Theme URI: 
Author: 
Author URI: 
Description: Tema personalizado para Hauzi
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hauzi
Tags: 
*/ 

/* --- MODAL GENÉRICO --- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s;
}
.modal.show {
    display: flex !important;
}
.modal-content {
    background: #fff;
    margin: auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}
.close-modal:hover {
    color: #222;
} 