/**
 * Estilos para a Modal Dia das Mães
 */

.modal-dia-das-maes {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow: auto;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-dia-das-maes.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-dia-das-maes__content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    background-image: url('../images/bg-modal-dia-das-maes.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    padding: 30px;
    overflow: hidden;
    animation: scaleIn 0.3s ease-in-out;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-dia-das-maes__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .modal-dia-das-maes {
        overflow: visible;
    }
    .modal-dia-das-maes__close {
        position: fixed;
        top: 0px;
        right: -10px;
    }
}

.modal-dia-das-maes__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-dia-das-maes__header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-dia-das-maes__header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal-dia-das-maes__login-btn {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 25px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.5);
}

.modal-dia-das-maes__body {
    padding: 20px 10px;
}

.modal-dia-das-maes__desc {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.modal-dia-das-maes__features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.modal-dia-das-maes__features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
}

.modal-dia-das-maes__features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-size: 20px;
}

.modal-dia-das-maes__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-dia-das-maes__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 160px;
}

.modal-dia-das-maes__btn .icon {
    margin-right: 8px;
    font-size: 18px;
}

.modal-dia-das-maes__btn--login {
    background-color: #3498db;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

.modal-dia-das-maes__btn--register {
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.modal-dia-das-maes__btn--login:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.modal-dia-das-maes__btn--register:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
}

.modal-dia-das-maes__footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-dia-das-maes__security {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.modal-dia-das-maes__security .icon {
    margin-right: 8px;
    font-size: 16px;
}

.modal-dia-das-maes__whatsapp {
    background-color: #25d366;
    color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
}

.modal-dia-das-maes__whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 5px;
}

.modal-dia-das-maes__whatsapp p {
    font-size: 14px;
    margin: 5px 0 0 0;
}

@media (max-width: 767px) {
    .modal-dia-das-maes__content {
        padding: 20px 15px;
        margin: 30px auto;
    }
    
    .modal-dia-das-maes__header h2 {
        font-size: 28px;
    }
    
    .modal-dia-das-maes__actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-dia-das-maes__btn {
        width: 100%;
    }
    
    .modal-dia-das-maes__desc {
        font-size: 16px;
    }
} 