:root {
    --cor1: #3f276d;
    --cor1l: #7038ca; 
    --cor1d: #2d1b4b; 
    --cor2: #EE771B;
    --cor2l: #f29845;
    --cor2d: #e06016;
    --cor3d: #943a18;
    --cor3: #000;
    --dark1: rgba(0, 0, 0, 0.82);
    --dark2: rgba(0, 0, 0, 0.67);
    --dark3: rgba(0, 0, 0, 0.5);
    --cor-destaque: #ffc107;
    --branco: #fff;
    --cinza1: #1e1e1e;
}

body.dark-mode {
    --cor1: #EE771B;
    --cor1l: #EE771B;
    --cor1d: #e06016;
    --cor2: var(--cor2d);
    --cor2l: var(--cor2d);
    --cor3: #fff;
    --dark1: rgba(255, 255, 255, 0.82);
    --dark2: rgba(255, 255, 255, 0.67);
    --dark3: rgba(255, 255, 255, 0.5);  
    --branco: #fff;
    --cinza1: #1e1e1e;
    --cinza2: #242424;
}

::-webkit-scrollbar {
    width: 8px;
    height: 10px;
    background-color: transparent;
}
  
::-webkit-scrollbar-thumb {
    background-color: #EE771B;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: #3f276d;
}

.cor1 {
    color: var(--cor1);
}

.cor2 {
    color: var(--cor2);
}

.cor3 {
    color: var(--cor3);
}

.roxo {
    color: var(--cor1);
}

.laranja {
    color: var(--cor2);
}

.branco {
    color: white;
}

.branco-1 {
    color: rgba(255, 255, 255, 0.82);
}

.branco-2 {
    color: rgba(255, 255, 255, 0.67);
}

.branco-3 {
    color: rgba(255, 255, 255, 0.5);
}

.preto {
    color: #000;
}

.cinza {
    color: rgba(19, 19, 19, 0.67);
}

.cinza2 {
    color: rgba(19, 19, 19, 0.82);
}

.bg-laranja {
    background-color: var(--cor2);
}

.bg-cinza {
    background-color: var(--cinza1);
}

* {
    font-family: "Poppins", sans-serif;
}

html, body {
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1 {
    font-size: 3.5em;
    line-height: 1.4;
    font-weight: 800;
    margin: 0;
    color: var(--cor1);
    text-shadow: -2px -2px 0 #fff, 3px -2px 0 #fff, -1px 2px 0 #fff, 2px 2px 0 #fff;
}

h2 {
    font-size: 2.75em;
    line-height: 1.25em;
    margin: 0;
    color: var(--cor1);
}

h3 {
    font-size: 1.75em;
    margin: 0;
    color: var(--cor1);
}

h4 {
    font-size: 1.5em;
    margin: 0;
    color: var(--cor1);
}

h5 {
    font-size: 1.25em;
    line-height: 1.37em;
    margin: 0;
}

h6 {
    font-size: 1em;
    margin: 0;
    color: var(--cor1);
    font-weight: 500;
}

p {
    font-size: 1em;
    line-height: 1.67em;
}

a {
    color: var(--cor2);
    text-decoration: none;
    font-weight: 500;
    line-height: 0em;
    margin: 0;
    padding: 0;
    display: inline-block;
}

ul {
    padding: 0;
}

#header {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#vantagens {
    background: url(../media/bg1.webp);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

#conheca {
    font-size: 1.25em;
    line-height: 1.37em;
    color: var(--dark1);
}

.sessao {
    margin: 0px auto;
    padding: 60px 0px;
    width: 95%;
    max-width: 1440px;
}

.sessao-ampla {
    margin: 0px auto;
    padding: 60px 0px;
    width: 95%;
    max-width: 1600px;
}

.flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.flex-lateral {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.flex-inicio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.espaco-entre {
    display: flex;
    justify-content: space-between;
}

.grid-centro {
    justify-items: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    gap: 24px;
}

.grid-1-2-1 {
    display: grid;
    grid-template-columns: 1fr 3fr 3fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    gap: 24px;
}

.grid-2-1-1-1-1 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.grid-1-2 {
    display: grid;
    justify-items: center;
    gap: 24px;
    grid-template-columns: 1fr 2fr;
}

.espaco-16 {
    width: 16px;
    height: 16px;
}

.espaco-24 {
    width: 24px;
    height: 24px;
}

.gap-0 {
    gap: 0px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.centro {
    text-align: center;
    align-self: center;
    justify-self: center;
    align-items: center !important;
}

.destaque {
    color: var(--cor-destaque);
}

.menu-margin {
    margin-top: 140px;
} 

.margin-0 {
    margin: 0px !important;
} 

.padding-0 {
    padding: 0px !important;
}

.padding-20 {
    padding: 20px;
}

.padding-40 {
    padding: 40px;
}

.no-padding-top {
    padding-top: 0px !important;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-32 {
    padding-top: 32px;
}

.width-600 {
    max-width: 600px;
}

.width-900 {
    max-width: 900px;
}

.width-1100 {
    max-width: 1100px;
}

.estrelas {
    color: #ffc400;
    font-size: 1.67em;
}

.botao {
    padding: 15px 25px;
    border: 3px solid var(--cor1);
    background: var(--cor1);
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    margin: 25px auto;
    font-size: 1em;
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
}

.botao:hover {
    border: 3px solid var(--cor1l);
    background: var(--cor1l);
    color: #fff;
    scale: 1.05;
}

.botao2 {
    padding: 15px 25px;
    border: 3px solid var(--cor2);
    background: var(--cor2);
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    margin: 25px auto;
    font-size: 1em;
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
}

.botao2:hover {
    border: 3px solid var(--cor2l);
    background: var(--cor2l);
    color: #fff;
    scale: 1.05;
}

.botao3 {
    padding: 15px 25px;
    border: 3px solid var(--cor1);
    background: transparent;
    text-decoration: none;
    color: var(--cor1);
    border-radius: 6px;
    margin: 25px auto;
    font-size: 1em;
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
}

.botao3:hover {
    padding: 15px 25px;
    border: 3px solid var(--cor1l);
    background: var(--cor1l);
    text-decoration: none;
    color: #fff;
    scale: 1.05;
}

.botao-branco {
    padding: 15px 25px;
    border: 3px solid #fff;
    background: #fff;
    text-decoration: none;
    color: var(--cor1);
    border-radius: 6px;
    font-size: 1em;
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: 0.5s;
}

.botao-branco:hover {
    scale: 1.03;
}

#menu-container {
    border-bottom: 1px solid rgb(155 155 155 / 15%);
    box-shadow: 0px 0px 5px rgb(155 155 155 / 15%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    display: block;
    transition: all 0.5s;
    /*transition-behavior: allow-discrete;*/
    transform: translateY(-150px);
}

#menu-container.ativo {
    transform: translateY(0px);
}

#menu-container-sticky {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(155 155 155 / 15%);
    box-shadow: 0px 0px 5px rgb(155 155 155 / 15%);
    position: fixed;
    width: calc(100% - 24px);
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    padding: 6px 12px;
    transition: all 0.5s;
    /*transition-behavior: allow-discrete;*/
    transform: translateY(-65px);
}

#menu-container-sticky.ativo {
    /*animation: aparecer 1s forwards;*/
    transform: translateY(0px);
}

@keyframes aparecer {
    0% {
        transform: translateY(-150px);
    }
    100% {
        transform: translateY(0px);
    }
}

#menu-container-mobile {
    display: none;
    width: 100%;
    padding: 8px 0px;
    position: fixed;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    transition: 0.5s;
    border-bottom: 1px solid transparent;
}

#menu-container-mobile.ativo {
    border-bottom: 1px solid rgb(155 155 155 / 15%);
    box-shadow: 0px 0px 5px rgb(155 155 155 / 15%);
}

#menu-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin: 0px auto;
}

#logo-mobile {
    width: 125px;
    /*margin-left: -10px;*/
}

#botao-menu-mobile {
    width: 36px;
    cursor: pointer;
    transition: 0.5s;
}

#botao-menu-mobile:hover {
    filter: brightness(2);
}


#nav-sticky-direito {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

#nav-sticky-direito img {
    width: 24px;
    transition: 0.5s;
    /*filter: invert(0.85);*/
}

#nav-sticky-direito img:hover {
    filter: brightness(1.25);
}

#menu-sticky {
    display: flex;
    flex-direction: row;
    gap: 36px;
}

#logo-sticky {
    height: 48px;
}

#top-nav {
    background: #000;
    padding: 8px 12px;
}

#top-nav span {
    color: rgba(255, 255, 255, 0.9);
}

.top-nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 0;
    transition: 0.5s;
}

.top-nav-links:hover {
    color: #fff;
}

.top-nav-links img {
    width: 22px;
    height: 22px;
    aspect-ratio: 1;
    object-fit: contain;
}

.icones-sociais {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icones-sociais img {
    width: 28px;
    height: 28px;
    aspect-ratio: 1;
    object-fit: contain;
}

#logo {
    height: 60px;
}

nav {
    padding: 16px 12px;
}

#menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.link {
    font-weight: 700;
    color: var(--cor1);
    transition: 0.5s;
}

.link:hover {
    color: var(--cor1l);
}

.sessao-titulo {
    background: #fff4e0;
    color: var(--cor2d);
    font-weight: 600;
    /*margin-bottom: 24px;*/
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.9em;
    margin-bottom: 8px;
}

#texto-inicio {
    max-width: 750px;
    gap: 16px;
}

#crescer {
    position: absolute;
    z-index: -1;
    top: 120px;
    height: calc(100svh - 120px);
    right: -300px;
}

.card-vantagens {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-vantagens dotlottie-player {
    width: 325px;
    height: 250px;
    aspect-ratio: 1;
    object-fit: contain;
    margin: 0 auto;
}

#barra-numeros {
    background: var(--cor1);
    border-radius: 500px;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 36px;
    gap: 12px;
    align-items: center;
}

#barra-numeros span {
    font-size: 3em;
    font-weight: 800;
    color: #fff;
    line-height: 1.25em;
}

#barra-numeros div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#barra-numeros p {
    color: var(--cor2);
    font-size: 1.25em;
    font-weight: 700;
    margin: 0px;
}

.card-programa {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*padding: 32px;*/
    /*border: 1px solid rgb(0 0 0 / 7%);*/
    /*border-radius: 12px;
    box-shadow: 0px 0px 25px rgb(119 119 119 / 15%);*/
}

.card-programa img {
    max-width: 350px;
}

#sobre-nos li img {
    width: 54px;
}

#sobre-nos li {
    display: flex;
    flex-direction: row;
    font-size: 1.37em;
    font-weight: 700;
    color: var(--cor1);
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
}

.divisor-img {
    width: 100%;
    transform: rotateX(180deg);
    margin-bottom: -10px;
}

#rodape {
    background: #000000;
}

#logo-rodape {
    max-width: 300px;
    margin-bottom: 24px;
}

.lista-contatos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.lista-contatos a {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.37em;
    font-weight: 600;
    gap: 10px;
    transition: 0.5s;
}

.lista-contatos a:hover {
    filter: brightness(1.25);
}

.lista-contatos img {
    width: 28px;
}

.flex-rodape {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.rodape-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.rodape-menu a {
    font-size: 0.95em;
    line-height: 1em;
    color: #fff;
    transition: 0.5s;
}

.rodape-menu a:hover {
    color: var(--cor2l);
}

.traco {
    width: 100%;
    height: 1px;
    background: rgb(255 255 255 / 25%);
}

.redes-sociais-contato {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.redes-sociais-contato a {
    padding: 6px;
    background: var(--cor2);
    border-radius: 50%;
    transition: 0.5s;
}

.redes-sociais-contato a:hover {
    background: var(--cor2l);
    scale: 1.07;
}

.redes-sociais-contato img {
    width: 28px;
    filter: brightness(10);
}

atendimento.html {
    margin-bottom: 40px;
}

.card-catalogo {
    padding: 32px;
    background: var(--cor1);
    /* color: #fff; */
    border-radius: 12px;
    display: grid;
    gap: 12px;
    transition: 0.5s;
}

.card-catalogo:hover {
    scale: 1.02;
    background: var(--cor1l);
}

.catalogo-local {
    font-weight: 600;
}

.lista-caracteristicas li {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--cor2);
    margin-bottom: 20px;
}

.lista-caracteristicas img {
    width: 32px;
}

.catalogo-icone {
    width: 125px;
    margin: 0 auto;
}

.redes-sociais-rodape img {
    width: 42px;
    margin-right: 2px;
}

#copyright {
    padding: 12px;
    border-top: 1px solid rgb(255 255 255 / 25%);
    color: #fff;
    display: grid;
    place-content: center;
}

#menu-container-mobile-overlay {
    display: flex;
    gap: 16px;
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100svh;
    align-items: center;
    justify-items: center;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

#menu-container-mobile-overlay.ativo {
    opacity: 1;
    pointer-events: all;
}

#menu-mobile-overlay {
    display: grid;
    gap: 12px;
    justify-items: center;
    margin-bottom: 20px;
}

#menu-mobile-overlay a, #menu-mobile-overlay span {
    display: flex;
    align-items: center;
    font-size: 1.25em;
    line-height: unset;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    color: var(--cor2);
}

#menu-overlay-icones a img {
    width: 32px;
}

#menu-overlay-icones {
    display: flex;
    gap: 8px;
}

#menu-overlay-contatos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#menu-overlay-contatos a {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
    line-height: 0;
    transition: 0.5s;
    font-size: 1.37em;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

#menu-overlay-contatos img {
    width: 22px;
    height: 22px;
    aspect-ratio: 1;
    object-fit: contain;
}

#logo-mobile-overlay {
    width: 60%;
    max-width: 450px;
    filter: brightness(10);
    margin-bottom: 32px;
}

#botao-fechar-menu-overlay {
    width: 36px;
    position: fixed;
    top: 16px;
    right: 16px;
    opacity: 0.82;
}

.card-sobre {
    max-width: 96px;
}

i {
    color: var(--dark3);
}

@media (max-width: 1220px){
    #menu-container {
        display: none !important;
    }

    #menu-container-sticky {
        display: none !important;
    }

    #menu-container-mobile {
        display: flex;
    }
    
    #header {
        min-height: unset;
        padding-top: 64px;
        padding-bottom: 54px;
    }

    #crescer {
        display: none;
    }

    .menu-margin {
        margin-top: 64px;
    }
}

@media (max-width: 767px){

    :root {
        font-size: 12px;
    }

    h1 {
        font-size: 3.5em;
    }

    .sessao {
        padding: 24px 0px;
    }

    .grid-3, .grid-2, .grid-1-2-1  {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .grid-2-1-1-1-1 {
        grid-template-columns: 1fr 1fr;
        gap: 36px 8px;
    }

    .grid-2-1-1-1-1 > :first-child {
        grid-column: span 2;
    }

    #barra-numeros {
        border-radius: 50px;
        grid-template-columns: 1fr 1fr;
        padding: 24px 12px;
        gap: 8px;
    }

    #barra-numeros h4 {
        font-size: 1.05em;
    }

    #barra-numeros span {
        font-size: 2.75em;
    }

    .flex-rodape {
        gap: 12px;
    }

    .divisor-img {
        width: 175%;
    }
}