/* ============================ */
/*            Budget            */
/* ============================ */
.sectionBudget {
    padding-top: 76px;
    padding-bottom: 76px;
    background-image: url('../../images/bg2.webp');
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.budget-title {
    max-width: 700px;
}

.sectionBudget h4 {
    color: #9CFFC0;
    font-weight: 500;
}

.sectionBudget h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0;
}

.sectionBudget p {
    color: #ffffff;
    line-height: 1.4;
}

.budget-buttons {
    width: 100%;
    max-width: 700px;

    display: flex;
    gap: 16px;
    margin: 30px 0;

    flex-wrap: wrap;
}

.budget-buttons .button01 {
    flex: 1 1 260px;
}

.budgetBox {
    width: 100%;
    max-width: 700px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.budget-single {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}


.budget-single i {
    font-size: 10px;
    color: #F9BC06;
}

.budget-single p {
    font-size: 15px;
}



/* ============================ */
/*            Footer            */
/* ============================ */
footer {
    background: #060C14 !important;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    color: #BCC7C2;
    gap: 50px;
}

.footer-logo {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    width: 70px;
}


.footer-logo p {
    color: #BCC7C2;
    line-height: 1.5;
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4 {
    color: white;
}

.footer-links a, .footer-links p {
    color: #BCC7C2;
    font-size: 15px;
}

.footer-bottom{
    padding: 0 20px;
    color: #BCC7C2;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid #181E26;
    margin-top: 50px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.developedBy:hover {
    text-decoration: underline;
    transition: 0.3s;
}

/* =========================
   FOOTER — RESPONSIVO
========================= */

/* Tablet */
@media (max-width: 1024px) {

    .footer-content {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-logo {
        width: 100%;
        max-width: 420px;
    }

    .footer-links {
        min-width: 180px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}


/* Mobile */
@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding-top: 40px;
    }

    .footer-logo {
        width: 100%;
    }

    .footer-logo img {
        width: 64px;
    }

    .footer-links {
        width: 100%;
        gap: 12px;
    }

    .footer-links h4 {
        font-size: 17px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0 30px;
        gap: 20px;
        font-size: 13px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 12px;
    }
}


/* Mobile pequeno */
@media (max-width: 480px) {

    .footer-content {
        gap: 32px;
    }

    .footer-logo p {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {

    .budget-buttons .button01 {
        width: 100%;
    }

    .sectionBudget h2 {
        font-size: 28px;
    }
}