@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    padding: 0;
    margin: 0;
    font-family: Poppins;
    box-sizing: border-box;
}

body {
    background: #f6f8f7;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Header */

main {
    flex: 1;
}
.header {
    background: white;
    min-height: 100px;
    height: clamp(100px, 12vh, 118px);
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
    width: 100%;
}

.navbar {
    display: flex;
    gap: 40px;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.navbar-opcoes {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.logo img {
    height: clamp(80px, 7vh, 80px);
    height: 30px;
}


.nav-menu {

    display: flex;
    gap: 40px;
    list-style: none;

}

.nav-menu a {

    text-decoration: none;
    color: #384240;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #28AE8F;
}

.btn-login {
    padding: 10px 44px;
    border: 2px solid #28AE8F;
    color: #28AE8F;
    background: transparent;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    margin-left: auto;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-login:hover {
    color: #fff;
    background: #28AE8F;
}

/* Main */
/* Primeira seção */
.hero {
    padding: 3rem 0 0 0;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.hero-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.hero-conteudo {
    max-width: 800px;
    width: 100%;
}

.hero-conteudo-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hero-imagem {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.hero-imagem img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.hero-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
    color: #384240;
}

.hero-titulo span {
    color: #28AE8F;
}

.hero-texto {
    margin-top: 18px;
    max-width: 700px;
    color: #606060;
}

.btn-principal {
    margin-top: 35px;
    padding: 15px 60px;
    background: #28AE8F;
    border: none;
    font-weight: bold;
    letter-spacing: 0.7px;
    border-radius: 40px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-principal:hover {
    background: #5d6b63;
}

/* Funções */

/* ===================== */
/* SECTION */
/* ===================== */

.funcoes {
    width: 100%;
    padding: 4rem 0;
    background: linear-gradient(to right,
            #e7ede7 calc((100% - 1200px)/2 + 1200px * 0.35),
            #c3f3dc calc((100% - 1200px)/2 + 1200px * 0.35));
}

/* ===================== */
/* WRAPPER */
/* ===================== */

.funcoes-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================== */
/* INTRO (ESQUERDA) */
/* ===================== */

.funcoes-intro {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-right: 2rem;
    background: transparent;
}

/* ===================== */
/* TEXTOS */
/* ===================== */

.secao-titulo {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
}

.secao-texto {

    color: #606060;
    line-height: 1.5;
}

/* ===================== */
/* LISTA */
/* ===================== */

.funcoes-lista {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1rem;
    padding: 1.5rem 0;
}

.funcoes-lista li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #28AE8F;
}

.funcoes-lista li i {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #28AE8F;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===================== */
/* GRID (DIREITA) */
/* ===================== */

.funcoes-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 20px;

    background: #c3f3dc;
    padding: 1rem 3rem;

    align-content: flex-start;
}

/* ===================== */
/* CARDS */
/* ===================== */

.funcoes-card {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

/* HEADER */
.funcoes-card header {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #384240;
}

.funcoes-card header h3 {
    font-size: 24px;
}

/* ÍCONE */
.funcoes-card header i {
    flex-shrink: 0;
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    background: #e7ede7;
    border-radius: 10px;
}

/* TEXTO */
.funcoes-card p {
    margin-top: 0.5rem;
    font-size: 14px;
    line-height: 1.5;
    color: #606060;
}

/* ===================== */
/* RESPONSIVO */
/* ===================== */


.empresa {
    padding: 60px 0;
}

.destaque {
    color: #28AE8F;
}

.secao-header {
    text-align: center;
    margin-bottom: 60px;
}

.secao-subtitulo {
    color: #384240;
    font-size: 25px;
    margin-top: 10px;

}

.circulo-decorativo {
    background: #28AE8F;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.empresa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.empresa-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    min-height: 140px;
}

.empresa-card h4 {
    color: #45BEA2;
    font-family: 'Poppins';
    font-size: 30px;
    text-transform: uppercase;
}

.empresa-card p {
    color: #606060;
    font-size: 12px;
}

/* Sobre */
.sobre {
    padding: 60px 0 0px 0px;
    background: linear-gradient(to right, #EDEDED 50%, #d9d9d9);
}

.sobre-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}


.sobre-intro {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sobre-conteudo p {
    font-size: 14px
}

.dados {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.titulos {
    color: #384240;

}

.dados-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid #fff;
    background: linear-gradient(to right, #EDEDED 50%, #d9d9d9);
    border-radius: 10px;
    width: 150px;
    height: 120px;
    padding: 1rem;
}

.dados-card h3 {
    text-align: center;
    font-family: 'Poppins';
    color: #384240;
    font-size: 35px;
}


.dados-card p {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #606060;
}

.sobre-imagem img {

    width: 130%;
    max-width: none;


}

.sobre-imagem {
    position: relative;
    display: flex;
    justify-content: center;

}

/* Patrocinadores */

.patrocinadores {
    background: linear-gradient(to right, #28AE8F, #5cc25c);
    min-height: 300px;
    padding: 2rem;
    text-align: center;
    font-size: 25px;
}

.patrocinadores .secao-titulo {
    color: #fff;
}

.patrocinadores-logo {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 2rem;
}
.patrocinadores-logo img {
    border-radius: 50%;
    max-width: 150px;
}
/* Footer */
.footer {
    background: #E3E3E3;
    padding: 3rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-marca {
    max-width: 200px;
}

.footer-marca h4 {
    font-weight: 300;
}

.footer-coluna {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-coluna ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: none;
    gap: 0.5rem;
}

.footer-coluna h3 {
    text-align: center;
    color: #384240;
}

.footer-coluna a {
    display: flex;
    font-weight: 300;
    text-decoration: none;
    color: #384240;
    text-align: center;
    flex-wrap: nowrap;
    transition: 0.3s;
}

.footer-coluna li {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}

.redes-sociais li {
    display: flex;
    justify-content: flex-start;
}

.footer-coluna li i {
    color: #384240;
}

.footer-coluna a:hover {
    color: #28AE8F;
}

.verde {
    color: #28AE8F;
}


@media (max-width: 768px) {

    /* HEADER */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .navbar-opcoes {
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* HERO */
    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-titulo {
        font-size: clamp(28px, 6vw, 36px);
        text-align: center;
    }

    .hero-texto {
        text-align: center;
    }

    .btn-principal {
        width: 100%;
    }

    .hero-imagem img {
        max-height: 250px;
    }

    /* FUNÇÕES */
    .funcoes-wrapper {
        flex-direction: column;
    }

    .funcoes-intro {
        padding-right: 0;
        text-align: center;
    }

    .funcoes-grid {
        padding: 20px;
        gap: 20px;
    }

    .funcoes-card {
        width: 100%;
    }

    /* EMPRESA */
    .empresa-grid {
        grid-template-columns: 1fr;
    }


    .sobre-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-imagem img {
        width: 100%;
    }

    .dados {
        flex-direction: column;
        align-items: center;
    }


    .patrocinadores-logo {
        flex-direction: column;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

}