/* Modal Fêtes */
.fetes-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.fetes-modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fetes-modal-content {
    position: relative;
    max-width: 550px;
    width: 100%;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 50%, #1a472a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    overflow: hidden;
    border: 3px solid #c41e3a;
    text-align: center;
    padding: 40px 30px;
}

.fetes-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    color: white;
}

.fetes-modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.fetes-emoji-header {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fetes-modal-content h2 {
    color: #ffd700;
    font-size: 32px;
    margin: 0 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fetes-modal-content h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.fetes-message {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.fetes-message p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.fetes-message p:last-child {
    margin-bottom: 0;
}

.fetes-message .tacu-msg {
    color: #ffd700;
    font-weight: bold;
}

.fetes-message .jess-msg {
    color: #98fb98;
    font-style: italic;
}

.fetes-signature {
    color: #ffd700;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.fetes-snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.fetes-snowflake {
    position: absolute;
    top: -20px;
    color: white;
    font-size: 20px;
    opacity: 0.7;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(600px) rotate(360deg);
    }
}

.fetes-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #c41e3a, #a01830);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
}

.fetes-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.5);
}

@media (max-width: 768px) {
    .fetes-modal-content {
        padding: 30px 20px;
    }

    .fetes-emoji-header {
        font-size: 45px;
    }

    .fetes-modal-content h2 {
        font-size: 24px;
    }

    .fetes-modal-content h3 {
        font-size: 18px;
    }

    .fetes-message p {
        font-size: 16px;
    }

    .fetes-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
