/* Footer Section Styles */
.footer-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #83BBCE;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: none;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin-bottom: 60px;
    gap: 349px;
}

.footer-content {
    text-align: left;
}

.footer-copyright {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-copyright:last-child {
    margin-bottom: 0;
}

.footer-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-btn {
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 9999px;
    /* Formato pílula */
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn-primary {
    background-color: #FFFFFF;
    color: #171923;
    border: 2px solid #FFFFFF;
}

.footer-btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #171923;
    transform: translateY(-2px);
}

.footer-btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.footer-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-email {
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    white-space: nowrap;
    width: 100%;
}

/* Responsividade para o email gigante no mobile */
@media (max-width: 768px) {
    .footer-email {
        font-size: 1.2rem;
        white-space: normal;
        word-break: break-word;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-content {
        text-align: center;
    }

    .footer-buttons {
        gap: 12px;
    }

    .footer-btn {
        width: 100%;
        max-width: 300px;
    }
}
