@import url(/css/galeria.css);

:root {
    --primary-blue: #016ebc;
    --yellow: #ffed00;
    --dark-blue: #063251;
    --white: #fff;
    --light-gray: #e6e6e6;
    --font-main: "Montserrat", sans-serif;
    --font-secondary: "Barlow", sans-serif;
    --font-tertiary: "Antonio", sans-serif;
    --border-radius: 30px;
    --transition-fast: 0.2s;
    --transition-medium: 0.3s;
    --max-width: 1920px;
    --header-height: 150px;
    --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08);
    --counter-blue: #0091F8;
    --counter-dark-blue: #063251;
    --counter-white: #fff;
    --counter-gray: #e6e6e6;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--light-gray);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.header__logo {
    width: 101px;
    height: 50px;
}

.header .container {
    width: 100%;
    max-width: 1920px;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--light-gray);
}

.menu-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 9999px;
    transition-property: background-color;
    transition-duration: 200ms;
    outline: none;
    gap: 0.25rem;
    cursor: pointer;
}

.menu-burger__line {
    width: 1.5rem;
    height: 2px;
    background-color: var(--primary-blue);
}

.menu-burger:hover {
    background-color: #e5e7eb;
    /* Tailwind's gray-200 */
}

.menu-burger:focus {
    outline: none;
}

/* Hide on xl and up */
@media (min-width: 1280px) {
    .menu-burger {
        display: none;
    }
}


.menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    z-index: 50;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #e6e6e6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: all 0.3s;
}

@media (min-width: 1280px) {
    .menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        transform: translateX(0);
        opacity: 1;
        flex-direction: row;
        gap: 0;
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
        display: flex;
    }
}

.menu__button {
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 9999px;
    transition: color 0.2s, background-color 0.2s;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;

}

.menu__button:hover {
    background-color: var(--yellow);
}

.section_abre,
.section_two,
.content_one,
.before_after {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.section_abre {
    /* width: 100%;
    height: 880px; */
    position: relative;
    width: 100vw;
    max-width: 1920px;
    height: auto;
    margin: 0 auto -5px;

    /* @media (max-width: 768px) {
        height: 30vh;
    } */
}


.bg_section_abre {
    position: relative;
}


.bg_section_abre .play-button {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    width: auto;
    height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bg_section_abre .play-button i {
    font-size: 12vw;
    opacity: 0.7;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    /* border: 1vw solid #fff;
    border-radius: 100%;
    padding: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* @media (min-width: 1920px) {
    .bg_section_abre .play-button i {
        font-size: 8vw;
    }
} */

.bg_section_abre .play-button:hover i {
    transform: translate(-50%, -50%) scale(1.1);
}

.bg_section_abre video {
    width: 100vw;
    max-width: 1920px;
    height: auto;
    object-fit: contain;

    /* @media (max-width: 768px) {
        height: 32.5vh;
    } */
}

.content_one {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--primary-blue);
    overflow: hidden;
}

.detalhe {
    position: absolute;
    max-width: 600px;
    left: 0;
    z-index: 0;
    opacity: 0.2;
    object-fit: cover;

    @media (max-width: 768px) {
        max-width: 100%;
    }
}

.content_one h2 {
    z-index: 3;
    margin: 0 20px;
    color: white;
    max-width: 350px;
    font-family: "Montserrat";
    font-weight: 400;
    max-width: 300px;

    span {
        font-weight: 700;
    }

    @media (max-width: 768px) {
        max-width: 400px;
        text-align: center;
    }
}

.content_one p {
    width: 505px;
    font-size: 59px;
    letter-spacing: -1px;
    color: #feee06;
    font-weight: 700;
    font-family: "Antonio";
    z-index: 5;


    @media (max-width: 768px) {
        font-size: 2rem;
        text-align: center;
        max-width: 350px;
        margin-top: -1rem;
    }
}

.section_two {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFED00;
    padding-bottom: 40px;
    padding: 100px 10px;
    position: relative;
}

.circle {
    width: 35px;
    height: 35px;
    background-color: #FFED00;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    left: 10px;

    @media (max-width: 768px) {
        width: 25px;
        height: 25px;
    }
}

.plus-line {
    position: absolute;
    background-color: #0091F8;
    border-radius: 2px;
}

.plus-line.vertical {
    width: 25px;
    height: 7px;

    @media (max-width: 768px) {
        width: 15px;
        height: 5px;
    }
}

.plus-line.horizontal {
    width: 7px;
    height: 25px;

    @media (max-width: 768px) {
        width: 5px;
        height: 15px;
    }
}

.feitos {
    position: relative;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 35px;
    margin: 0 15px;
    flex-wrap: wrap;
    box-sizing: border-box;

}

.blue {
    background-color: #0091F8;
}

.white {
    background-color: #fff;
}

.white h2 {
    color: #063251 !important;
}

.dark_blue {
    background-color: #063251;
}

.dark_blue h2 {
    color: #FFED00 !important;
}

.borde_dark {
    border: 4px solid #063251;
}

.detalhe_content {
    display: flex;
    align-items: center;
    max-width: 500px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.detalhe_content h2 {
    color: #063251 !important;
}

.detalhe_elevado {
    position: absolute;
    background-color: #0091F8;
    color: #fff;
    bottom: -20px;
    right: 10px;
    transform: skewY(-3deg);
    width: auto;
    border-radius: 30px;
    padding: 0 20px;

    @media (max-width: 768px) {
        bottom: -15px;
    }

}

.detalhe_elevado h2 {
    margin: 5px;
    color: #fff !important;
    font-size: 1.2rem;

    @media (max-width: 768px) {
        font-size: 10px;
    }
}


.section_two h1 {
    color: #063251;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 40px;
    letter-spacing: -2px;
    text-align: center;

    span {
        font-weight: 800;
    }

    @media (max-width: 768px) {
        font-size: 25px;
    }
}

.feitos h2 {
    color: #fff;
    position: relative;
    align-items: center;
}

@media (max-width: 768px) {
    .feitos h2 {

        font-size: 15px !important;
        max-width: 240px;
        text-align: center;
    }

    .feitos {
        max-width: 400px;
    }
}

/* acompanhe as vitórias */

.media-section {
    width: 100%;
    max-width: 1920px;
    /* height: 440px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--primary-blue);
    position: relative;
    padding-top: 60px;
}

.media-section .media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: -60px;

}

@media (max-width: 680px) {
    .media-section .media-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 681px) and (max-width: 1440px) {
    .media-section .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.media-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.08), 0 1.5px 4px 0 rgba(0, 0, 0, 0.04);
    width: 300px;
    height: 320px;
    overflow: hidden;
    transition: transform 0.3s ease;

    gap: 0.5rem;
    /* gap-2 ~ 0.5rem */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.media-card:hover:not(.media-card:first-child) {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


.media-card:first-child {
    padding: 0 3rem;
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: -42px;
}

.media-card .outline-icon i {
    font-size: 1.5rem;
    padding: 10px;
    color: var(--primary-blue);
}

.media-card .outline-icon {
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-section__title {
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    background-color: #3d9ee3;
    padding: 10px 60px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
}

/* footer */
.footer {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 auto;
    text-align: center;
}

.footer__container {
    display: flex;
    gap: 1rem;
    padding: 2rem 1rem;
}

.footer .list-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer .social-icon {
    color: #fff;
    font-size: 1.5rem;
    /* text-2xl ~ 24px */
    border-radius: 9999px;
    background-color: #008BFF;
    width: 2.5rem;
    /* w-10 */
    height: 2.5rem;
    /* h-10 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    text-decoration: none;
}

.footer .outline-logo {
    border: 2px solid #008BFF;
    border-radius: 9999px;
    padding: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .social-icon:hover {
    background-color: #006BB5;
}

.social-icon .kwai {
    width: 20px;
    height: 20px;
}

.footer__button {
    background-color: #f3f4f6;
    color: #fff;
    border: 2px solid black;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    border-radius: 9999px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    color: #333;
    text-decoration: none;
    color: black;
    font-weight: 600;
    margin-bottom: 8rem;
}

/* utilit classes */

.hidden {
    display: none;
}

.flex {
    display: flex;
}