/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1px; /* aumenta o espaço entre as letras */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;   
}

/* Barra de navegação */
.navbar {
    color: black;
    position: fixed;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    background: #0c2cca; /* transparente */
    backdrop-filter: blur(10px); /* efeito blur */
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    flex-direction: row;
    box-shadow: 0 10px 0 #008EDC; /* segunda linha fina */
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav .texto{
    color: #fff;
    text-decoration: none;
    font-size: 4.5vh;
    font-weight: 500;
}

.navbar a {
    text-decoration: none;
}

.navbar .menu {
    list-style: none;
    float: right;
    margin-right: 0px;
}

.navbar .menu li {
    display: inline;
    margin: 0px;
    color: #fff;
}

.navbar .menu a {
    color: #fff;
    text-decoration: none;
    font-size: 2.1vh;
    font-weight: 400;
    padding: 1.7vh 1vw;
    transition: background 0s;
}

.navbar .menu a:hover {
    background: #008EDC;
    color: #fff;
    border-radius: 8px;
}

/* NewsLetter */
.newslatter {
    margin-top: 5vh;
    background-color: #F8C026;
}
.carousel-container { position: relative; width: 40%; margin: auto; overflow: hidden; }
.carousel { display: flex; transition: transform 0.5s ease-in-out; }
.carousel img { width: 100%; height: auto; }
.prev, .next { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background-color: rgba(0,0,0,0.2); 
    color: white; 
    border: none; 
    padding: 10px;
    cursor: pointer; 
}
.prev { left: 10px; }
.next { right: 10px; }

/* Seção inicial */
#inicial {
    padding-top: 7vh;
}
.inicial {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    font-family: "Montserrat", sans-serif;
    color: #505050;
}

.inicial .texto {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
}

.inicial .texto_aux{
    max-width: 40vw;
}

.inicial .texto h1{
    font-size: 5vh;
    font-weight: 300;
    line-height: 1;
}

.inicial .texto h2{
    font-size: 4vh;
    font-weight: 300;
}

.inicial .texto p{
    font-size: 2.3vh;
    font-weight: 300;
}

.inicial .galeria {
    display: flex;
    justify-content: center;
    align-items: bottom;
}

.inicial .galeria_phone{
    display: none;
}

.inicial .galeria img {
    width: 32vw;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
}

.inicial img:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.inicial .botao {
    display: inline-block;
    padding: 1.5vh 1.5vw;
    font-size: 2vh;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(45deg, #0c2cca, #008EDC);
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .inicial .botao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease-in-out;
    z-index: 1;
  }

  .inicial .botao:hover::before {
    width: 100%;
  }

  .inicial .botao:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }

  .inicial .botao:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

/* Seção Parceiros */
.parceiros {
    display: flex;
    padding-top: 10vh;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.parceiros .parceiros_aux{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.parceiros .texto_oculto{
    display: none;
}

.parceiros .faixada{
    width: 70%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: left;
}

.parceiros .faixada img{
    width: 100%;
    height: auto;
}

.parceiros .texto {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.parceiros .texto h1 {
    font-size: 4vh;
    font-weight: 200;
    color: #505050;
}

.parceiros .texto h2 {
    font-size: 2.3vh;
    font-weight: 200;
    color: #505050;
    max-width: 40vw;
}

.parceiros .container_imagens{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh;
    gap: 5vh;
}

.parceiros .container_imagens img {
    object-fit: cover;
    transition: transform 0.3s;
}

.parceiros .container_imagens img:hover {
    transform: scale(1.15);
}

/* Seção Mapa */
.mapa {
    padding: 5vh 0;
    text-align: center;
    background: #f1f1f1;
}

.mapa h1{
    font-size: 5vh;
    font-weight: 300;
}

.mapa p{
    font-size: 2.5vh;
    font-weight: 300;
}

/* Seção Contato */
.contato {
    padding: 5vh 0;
    text-align: center;
    /* background: #e0e0e0; */
    color: #000000;
    justify-content: center;
    display: flex;
    font-size: 2vh;
    max-width: 100vw;
}

.contato .container_fone .redes_sociais{
    display: flex;
    justify-content: center;
    align-items: center;
}

.contato .container_fone{
    justify-content: left;
    text-align: left;
    align-items: center;
    padding-left: 10vh;
    padding-right: 10vh;
}

.contato .container_fone .fone{
    justify-content: left;
    text-align: left;
    align-items: center;
}

.contato .container_fone .fone p {
    margin-bottom: 1vh;
    align-items: center;
    justify-content: center;
}

.contato h2 {
    font-weight: 300;
}

.contato a {
    color: white; /* Cor do texto do link */
    text-decoration: none; /* Remove o sublinhado do link */
}

/* Estilo para o botão sanduíche */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Oculta o menu por padrão em telas menores */
.menu {
    display: flex;
    list-style: none;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    /* Desativa a rolagem lateral */
    body, html {
        overflow-x: hidden; /* Impede a rolagem horizontal */
    }

    /* Garante que os elementos não ultrapassem a largura da tela */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Ajusta a barra de navegação */
    .navbar {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .container {
        display: flex;
        justify-content: right;
        align-items: center;
        /* gap: 3vh; */
    }

    .navbar .logo {
        margin-right: 5vw;
        font-size: 6vw;
        align-items: center;
    }

    .navbar .logo img{
        display: none;
    }

    .navbar .menu {
        float: none;
        margin: 0;
        padding: 0;
    }

    .navbar .menu li {
        display: block;
        margin: 1vh 0;
    }

    .menu {
        display: none; /* Oculta o menu */
        flex-direction: column;
        background: #0c2cca;
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        height: 100vh;
        border-bottom-left-radius: 10px;
        text-align: center;
        z-index: 1000;
    }

    .menu li {
        margin: 1vh 0;
    }

    .menu a {
        color: #fff;
        padding: 1vh;
        display: block;
    }

    .menu-toggle {
        display: flex; /* Exibe o botão sanduíche */
    }

    .menu.show {
        display: flex; /* Mostra o menu ao clicar no botão */
    }

    /* Ajusta a seção Newslatter */
    .newslatter {
        margin-top: 7vh;
        background-color: #F8C026;
    }
    .carousel-container { position: relative; width: 80%; margin: auto; overflow: hidden; }
    .carousel { display: flex; transition: transform 0.5s ease-in-out; }
    .carousel img { width: 100%; height: auto; }
    .prev, .next { 
        position: absolute; 
        top: 50%; 
        transform: translateY(-50%); 
        background-color: rgba(0,0,0,0.2); 
        color: white; 
        border: none; 
        padding: 10px;
        cursor: pointer; 
    }
    .prev { left: 10px; }
    .next { right: 10px; }

    /* Ajusta a seção inicial */
    .inicial {
        text-align: center;
        flex-direction: column;
    }

    .inicial .texto {
        margin-top: 8vh;
        margin-bottom: 8vh;
    }

    .inicial .texto_aux{
        max-width: 100% !important;
    }

    .inicial .texto h1 {
        font-size: 5.5vh;
    }

    .inicial .texto h2 {
        font-size: 3.5vh;
    }

    .inicial .texto p {
        font-size: 2.5vh;
    }

    .inicial .galeria img {
        width: 100%;
    }

    .inicial .galeria_phone{
        display: block;
    }

    .inicial #galeria_oculta{
        display: none;
    }

    .inicial .botao {
        font-size: 2.5vh;
        padding: 3vh 5vw;
    }

    /* Ajusta a seção parceiros */
    .parceiros{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .parceiros .container_imagens {
        margin-top: 5vh;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* gap: 3vh; */
    }

    .parceiros .faixada {
        width: 100% !important;
        height: auto;
    }

    .parceiros .faixada img {
        width: 100% !important;
        height: auto;
    }

    .parceiros .texto {
        display: none;
    }

    .parceiros .texto_oculto{
        display: block;
        align-items: center;
        justify-content: center;
    }

    .parceiros .texto_oculto h1{
        text-align: center;
        margin-top: 6vh;
        font-size: 3vh;
        font-weight: 200;
        color: #505050;
    }

    .parceiros .parceiros_aux{
        display: flex;
        flex-direction: row;
    }

    .parceiros .container_imagens img{
        width: 50vw !important;
        height: auto !important;
    }

    /* Ajusta o mapa */
    .mapa .container {
        display: flex;
        flex-direction: column;
    }

    .mapa .container h1{
        font-size: 4vh;
        font-weight: 400;
    }

    .mapa .container p{
        font-size: 2vh;
    }

    .mapa iframe {
        width: 90%;
        height: 50vh;
    }

    /* Ajusta a seção contato */
    .contato {
        flex-direction: column;
        align-items: center;
        /* justify-content: center;
        text-align: center; */
        /* padding: 5vh 2vw;  */
    }

    .contato .container_fone {
        margin-bottom: 5vh;
    }

    .contato .container_fone {
        text-align: center;
        flex-wrap: nowrap;
    }

    .contato .container_fone .fone {
        text-align: center;
        flex-wrap: nowrap;
        color: #000 !important;
        -webkit-text-fill-color: #000 !important; /* Safari */
    }

    .contato .redes_sociais img {
        width: 20vw !important;
        margin: 3vh !important;
    }
}

