/* Rodapé */
.footer {
    background-color: #2D3E5D;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

#FooterSeals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#FooterSeals a,
.secure-seal {
    display: inline-block;
}

#FooterSeals a {
    transition: all 0.3s ease;
}

#FooterSeals a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.secure-seal {
    margin: 5;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-container {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.email-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 260px;
}

.email-contact:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.email-contact i {
    color: #81C784;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.email-contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.email-contact a:hover {
    color: #81C784;
    letter-spacing: 0.8px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-content {
        margin-bottom: 1.5rem;
    }

    .email-contact {
        padding: 0.7rem 1.2rem;
        min-width: unset;
        width: 90%;
        max-width: 320px;
    }

    #FooterSeals {
        gap: 1.5rem;
    }
}