body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

h1 {
    color: #333;
}

.padding_container_t {
    padding-top: 151px;
}

.padding_container_b {
    padding-bottom: 151px;
}

.padding_container_t_contato {
    padding-top: 136px;
}

.padding_container_b_contato {
    padding-bottom: 136px;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    width: 100%;
    height: 90px;
    z-index: 1;
}

.nav-link {
    color: #fff;
}


#banner {
    background-image: url('../images/banner_contato.gif');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.text_container {
    height: 75vh;
    width: 85%;
    border-bottom: 1px solid #fff;
}

#banner h1 {
    color: #fff;
    font-size: 75px;
    padding-top: 15vh;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 85px;
}

#banner h3 {
    color: #fff;
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 275;
    line-height: 40px;
}

#banner p {
    color: #fff;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin-top: 10px;
    text-align: left;
    width: 85%;
}

.nav-link {
    position: relative;
    padding: 8px 16px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.nav-link.active {
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 12px;
    color: #ffffffbd !important;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 12px;
}

.navbar-nav .nav-link:hover {
    color: #f0f0f0;
}

/* Botão circular fixo */
.custom-toggler {
    position: relative;
    /* Mantém o botão no fluxo, mas impede deslocamento */
    z-index: 1051;
    /* Fica acima do menu */
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.custom-toggler:focus {
    box-shadow: none;
}

.custom-toggler:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

/* Linhas do hamburger */
.hamburger {
    position: relative;
    width: 24px;
    height: 16px;
    display: inline-block;
}

.hamburger span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 7px;
}

.hamburger span:nth-child(3) {
    top: 14px;
}

/* Estado ativo (menu aberto) */
.custom-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
}

.custom-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 7px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.bg_gray {
    background-color: #F5F5F5;
}

#por-que-escolher{
    display: flex;
    flex-direction: column;
}

#por-que-escolher h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #777777;
    font-weight: 275;
}

#por-que-escolher h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    color: #358CCB;
    font-weight: 500;
    line-height: 44px;
    text-transform: uppercase;
}

#por-que-escolher p {
    font-family: 'Poppins', sans-serif;
    padding-top: 2rem;
    font-size: 18px;
    color: #000B2F;
    font-weight: 100;
    line-height: 32px;
    margin-bottom: 80px;
}

#por-que-escolher span {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #000B2F;
    font-weight: 500;
    line-height: 32px;
}


.card_icon {

    display: flex;
    flex-direction: column;
    align-items: start;
    min-height: 160px;
    /* garante alinhamento mas deixa crescer se precisar */
}

.card_icon p{
    color: #358CCB;
    font-size: 18px;
    font-weight: 500;
    
}

/* Animação fade-in */
.fade-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.divisao {
    border-bottom: 4px solid #358CCB;
    width: 50px;
}

#typing-title {
    font-size: 36px;
    color: #358CCB;
    font-weight: 500;
    line-height: 44px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

#typing-text {
    width: 70%;
    font-size: 18px;
    line-height: 32px;
    color: #000B2F;
    font-weight: 275;
    font-family: 'Poppins', sans-serif;
}

.bg_blue {
    background-color: #000B2F;
}

.bg_blue_ {
    background-color: #358CCB;
}

#text_crescimento h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    color: #FFFFFF;
    font-weight: 500;
    line-height: 44px;
}

#text_crescimento h3 {
    font-family: 'Poppins', sans-serif;
    padding-top: 1rem;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 275;
}

.grid-estrutura {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: start;
}

.grid-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.grid-item img {
    width: 70px;
    height: 70px;
    object-fit: contain; /* mantém proporção sem distorcer */
}

.grid-item h4, 
.grid-item span {
    font-size: 30px;
    color: #358CCB;
    font-weight: 500;
    line-height: 20px;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.grid-item p {
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    font-weight: 275;
    font-family: 'Poppins', sans-serif;
    margin: 5px 0 0;
}

.btn_saiba_mais {
    font-size: 14px;
    font-weight: 500;
    color: #358CCB;
    text-decoration: none;
    width: 120px;
}

.btn_conheca {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn_conheca.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.line_footer {
    width: 100%;
    height: 20px;
    background-color: #000412;
}

footer {
    background-color: #000B2F;
    color: #ffffff;

}

footer a {
    color: #ffffffaf;
    font-size: 14px;
    font-weight: 500;
    line-height: 34px;
    text-decoration: none;

}

footer p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 34px;
    color: #ffffffaf;
}

.liner_footer {
    width: 100%;
    height: 2px;
    background-color: #358CCB;
    margin-top: 20px;
    margin-bottom: 15px;
}


#contato {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: end !important;
    color: #fff;
    overflow: hidden;
}

/* Camada de degradê */
#contato::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* Quanto maior, mais sobe o gradiente */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none; /* Não bloqueia cliques */
    z-index: 0;
}

/* Mantém o conteúdo acima do degradê */
#contato .container {
    position: relative;
    z-index: 1;
}

/* Duas camadas para o efeito de transição */
#contato .bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: -1;
}

#contato .bg-slider.active {
    opacity: 1;
}

.content_banner h1 {
    font-size: 75px;
    font-weight: 500;
    line-height: 85px;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;

}

.logo_title h2{
    color: #358CCB;
    font-size: 30px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}



.content_banner p {
    font-size: 12px;
    font-weight: 100;
    line-height: 10px;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    padding: 0;
    margin: 0;
}

.scroll-down {
    display: inline-block;
    font-size: 2rem;
    /* tamanho da seta */
    color: #fff;
    /* cor da seta */
    animation: bounce 1.5s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(8px);
    }

    60% {
        transform: translateY(4px);
    }
}

#medalha{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

#medalha h2{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #358CCB;
    font-weight: 500;
    margin: 0px;
}

.img_certo{
    justify-content: center;
    align-items: center;
}

.img_certo img{
    width: 35px;
    height: 35px;
}

#medalha h3{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #358CCB;
    font-weight: 275;
    margin: 0px;
}


/* Chrome, Edge, Safari (WebKit) */
::-webkit-scrollbar {
  width: 12px;              /* largura da scrollbar vertical */
  height: 12px;             /* altura da scrollbar horizontal */
}
::-webkit-scrollbar-track {
  background: #f0f0f0;      /* cor do trilho */
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #1e88e5; /* cor do "polegar" (thumb) */
  border-radius: 8px;
  border: 3px solid #f0f0f0; /* cria margem entre thumb e track */
}
::-webkit-scrollbar-thumb:hover {
  background-color: #1565c0;
}

/* Firefox */
* {
  scrollbar-width: thin;                 /* auto, thin, none */
  scrollbar-color: #1e88e5 #000B2F;     /* thumb track */
}


@media (max-width: 992px) {

    /* tablets */
    .grid-estrutura {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* celulares */

}

/* Ajuste do collapse para mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        /* Não empurra conteúdo */
        top: 100%;
        /* Logo abaixo da navbar */
        left: 0;
        width: 100%;
        padding-bottom: 20px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        padding-top: 25px;
        background-color: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: end;
        gap: 15px;
        /* espaço entre links */
    }
}

/* Desktop mantém o menu no fluxo normal */
@media (min-width: 992px) {
    .navbar-collapse {
        position: static;
        opacity: 1;
        visibility: visible;
        padding-top: 0;
        background: transparent;

    }

    .navbar-nav {
        flex-direction: row;
        gap: 0;
    }
}

@media (max-width: 706px) {

    h1 {
        font-size: 55px !important;
        line-height: 55px !important;
        padding-top: 30vh !important;
    }

    #banner{
        text-align: center;
    }
    .text_mobile{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .br_none{
        display: none !important;
    }

    #typing-text{
        width: 100% !important;
    }

    .grid-estrutura {
        grid-template-columns: 1fr;
    }

    .redes_sociais{
        padding-top: 1rem;
        justify-content: center !important;
        align-items: center !important;
    }

    .padding_mobile{
        padding: 1rem 0rem !important;
    }

    #medalha{
        padding-top: 3rem;
    }
}