:root {
    --primary-light: #F2E8DE;
    --primary-dark: #1A3A2A;
    --accent-tan: #E6D5C3;
    --accent-tan-dark: #DFD3C3;
    --border: #000;
    --text-light: #000;
    --text-dark: #fff;
}

/* Overlay (Fondo oscuro) */
.modal-overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

/* Contenedor del Modal */
.modal-content {
    background-color: var(--primary-light);
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--accent-tan);
    text-align: center;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background-color: var(--primary-dark);
    padding: 20px;
}

.modal-logo {
    width: 100px;
}

.modal-body {
    padding: 30px 20px;
    color: var(--primary-dark);
}

.modal-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.modal-body h2 {
    margin: 0 0 10px 0;
    font-family: serif;
    letter-spacing: 1px;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.modal-footer {
    padding: 20px;
    background-color: var(--accent-tan-dark);
}

.btn-modal {
    background-color: var(--primary-dark);
    color: var(--text-dark);
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    letter-spacing: 2px;
}

.btn-modal:hover {
    background-color: #2a5a41; /* Un poco más claro que el dark */
}