:root {
    --black: #000;
    --white: #FFF;
    --divider: #F5F5F5;
    --font-base: "Inter", sans-serif;
    --font-barlow-condensed: "Barlow Condensed", sans-serif;
    --font-weight-thin: 100;
    --font-weight-extra-light: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 900;
}

@font-face {
    font-family: 'UnitedSansCond';
    src: url('../fonts/UnitedSansCond-Heavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'UnitedSansCondBold';
    src: url('../fonts/UnitedSansCond-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'UnitedSansCond', sans-serif;
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    background-image: url(../images/background.webp);
    background-position: center -25vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000000;

    @media(min-width:575.98px) {
        background-position: center -5vh;
    }

    @media(min-width:767.98px) {
        background-position: center 0;
    }

    @media(min-width:991.98px) {
        background-position: center -5vh;
    }

    @media(min-width:1439.98px) {
        background-position: center -20vh;
    }
}


.main-logo {
    text-align: center;
    margin: 65px 0;
}

.main-logo img {
    width: 130px;
    height: auto;

    @media(max-width:575.98px) {
        width: 80px;
    }
}

.title {
    text-align: center;
    max-width: 100%;
    margin-bottom: 240px;
}

.title img {
    width: 100%;
    max-width: 653px;

     @media(max-width:575.98px) {
        font-size: 32px;
        max-width: 90%;
    }
}


.not-found {
    font-family: 'UnitedSansCond';
    font-weight: var(--font-weight-bold);
    font-size: clamp(32px, 10vw, 56px);
    line-height: 100%;
    text-align: center;
    color: var(--white);
    letter-spacing: 0.2em;
    margin-bottom: 50px;
}


.donativos {
    background: rgba(0, 0, 0, 0.7);
    padding: 50px;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
}

@media(max-width:575.98px) {
    .donativos {
        padding: 50px 16px;
    }
}

.donativos-formas {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.donativos h2 {
    font-size: 64px;
    font-weight: var(--font-weight-semi-bold);
    color: var(--white);
    margin-bottom: 50px;

    @media(max-width:575.98px) {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

.donativos p {
    font-size: 24px;
    font-weight: var(--font-weight-semi-bold);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    @media(max-width:575.98px) {
        font-size: 16px;
    }
}

.donativo {
    padding: 40px 0;
    border: 1px solid #A7A7A7;
    border-radius: 16px;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;

    @media(max-width:575.98px) {
        padding: 24px 0;
        gap: 8px;
    }
}

.donativo h2 {
    margin: 0;
    font-family: 'UnitedSansCondBold';
    font-size: 42px;
    letter-spacing: 0.06em;

    @media(max-width:575.98px) {
        font-size: 24px;
    }
}

.donativo p {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'UnitedSansCondBold';

    @media(max-width:575.98px) {
        font-size: 16px;
    }
}


iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    margin: 100px 0;
}

.call-to-action {
    padding: 3rem 0;
    container-type: inline-size;
}

.call-to-action .call-to-action-body {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    row-gap: 30px;
}

@container (width > 767.98px) {
    .call-to-action .call-to-action-body {
        grid-template-columns: 600px auto;
        column-gap: 50px;
        row-gap: 0;
    }
}

.call-to-action img {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.call-to-action h2 {
    font-family: var(--font-barlow-condensed);
    font-size: 40px;
    font-weight: var(--font-weight-regular);
    color: var(--white);
    margin-bottom: 24px;
}

.call-to-action p {
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
    margin-bottom: 20px;
}

.parceiros {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 0;
    list-style: none;
}

.parceiros .parceiro {
    height: 100px;
    align-content: center;

}

.parceiros .parceiro a {
    display: block;
    /* height: 100%; */
}

.parceiros .parceiro img {
    /* width: 100%; */
    height: 100px;
    object-fit: contain;
    object-position: center;
}


footer h2 {
    font-family: var(--font-barlow-condensed);
    font-size: 24px;
    font-weight: var(--font-weight-semi-bold);
    color: #F5F5F5;
    margin-bottom: 32px;
}




.footer {
    padding: 50px 0;
}

.footer .logos {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 50px;
}

.footer .logos .logo {
    width: 170px;
    height: 65px;
}

.footer .logos .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}


hr {
    border-color: var(--divider);
    margin: 50px 0;
}


.rights {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-base);
    font-weight: var(--font-weight-regular);
}


a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px 48px;
    flex-wrap: wrap;
    margin-bottom: 90px;
}

.counter .odometer {
    font-size: 73px;
    padding: 0;
}

.counter .odometer .odometer-value {
    color: var(--white);
}

.counter p {
    font-family: "UnitedSansCond";
    font-size: 32px;
    line-height: 100%;
    font-weight: var(--font-weight-semi-bold);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.08em;
}