
/* Estilo da área que contém os quadrados */
.container {
    display: flex;
    justify-content: space-between;
    /* Espaço uniforme entre os quadrados */
    height: 40vh;
    /* Altura total da tela */
    margin: 0;
    /* Remove margens do body */
    padding: 0;
    /* Remove preenchimento do body */
}

/* Estilo dos quadrados */
.box {
    flex: 1;
    /* Todos os quadrados ocupam espaço igual */
    height: 100%;
    /* Altura ajustada ao container */
}

/* 3 cores de azul */
.light-blue {
    background-color: #0A1A44;
}

.medium-blue {
    background-color: #071332;
}

.dark-blue {
    background-color: #092D53;
}

.textoajustado {
    /* ajuste dos 3 box de3 cores */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.texto-imagem {
    height: 100%;
    font-size: 4vw;
    text-align: center;
    font-family: 'Inter', sans-serif !important;
    color: #D2E48E;
}

.texto-caixa {
    font-size: 24px;
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif !important;
}

.nav {
    list-style: none;
    /* Remove os marcadores de lista */
    padding: 0;
    /* Remove o preenchimento padrão */
    margin: 0;
    /* Remove as margens padrão */
    display: flex;
    /* Torna a lista flexível */
    justify-content: flex-end;
    /* Alinha os itens à direita */
    gap: 50px;
    /* Espaçamento entre os itens */
}

.nav li {
    display: inline;
    /* Deixa os itens na horizontal */
}

.nav a {
    text-decoration: none;
    /* Remove o sublinhado */
    color: white;
    /* Cor do texto */
    font-size: 16px;
    /* Tamanho do texto */
    font-family: Inter;
}

/*.nav a:hover {
    color: rgb(182, 35, 25);
    /* Cor ao passar o mouse 
}*/

.carousel-item img {
    height: 70vh;
    object-fit: cover;
    width: 100%;
}

.html {

    padding-right: 0px !important;
    padding-left: 0px !important;

    margin-right: 0px !important;
    margin-left: 0px !important;
    overflow-x: hidden;
    /* Evita rolagem horizontal */

}

.html body {

    padding-right: 0px !important;
    padding-left: 0px !important;

    margin-right: 0px !important;
    margin-left: 0px !important;
}

body {

    padding-right: 0px !important;
    padding-left: 0px !important;

    margin-right: 0px !important;
    margin-left: 0px !important;
    overflow-x: hidden;
    /* Evita rolagem horizontal */

}

.frame {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 100%;
    padding: 20px;
}

.overlay-text .left {
    float: left;
}

.overlay-text .right {
    float: right;
}

.frame>img {
    width: 100%;
    /*  animation: zoom 40s ease infinite alternate;*/
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .frame {
        height: 50vh;
        /* Ajuste de altura para telas menores */
    }
}

@media (max-width: 576px) {
    .frame {
        height: 40vh;
        /* Ajuste de altura para telas menores */
    }
}

.parallax {
    /* Parallax effect: */
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
}

.frame.parallax {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 80vh;
    /* Ajuste conforme necessário */
    background-repeat: no-repeat;
}


@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

@media (max-width: 767px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

.banner-custom {
    height: 200px;
    /* Ajuste a altura conforme necessário */
    background-size: cover;
    /* Ajusta o tamanho da imagem de fundo */
    background-position: center;
    background-repeat: no-repeat;
}

/* Disable Parallax Effect on Mobile Devices */
@media (max-width: 768px) {
    #parallax-banner {
        background-attachment: scroll;
    }
}


.fs-title {
    font-size: 18px;
}

/* Tamanho padrão */
.fs-subtitle {
    font-size: 14px;
}

/* Tamanho padrão */
.fs-info {
    font-size: 12px;
}

/* Tamanho padrão */
.fs-btn {
    font-size: 12px;
}

/* Tamanho padrão */

/* Media Queries para ajustar tamanhos de fonte */
@media (max-width: 576px) {
    .fs-title {
        font-size: 32px !important;
    }

    .fs-subtitle {
        font-size: 18px;
    }

    .fs-info {
        font-size: 15px !important;
    }

    .fs-btn {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .fs-title {
        font-size: 38px;
    }

    .fs-subtitle {
        font-size: 22px;
    }

    .fs-info {
        font-size: 16px;
    }

    .fs-btn {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .fs-title {
        font-size: 48px;
    }

    .fs-subtitle {
        font-size: 16px;
    }

    .fs-info {
        font-size: 22px;
    }

    .fs-btn {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .fs-title {
        font-size: 58px;
    }

    .fs-subtitle {
        font-size: 20px;
    }

    .fs-info {
        font-size: 24px;
    }

    .fs-btn {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .fs-title {
        font-size: 110px;
    }

    .fs-subtitle {
        font-size: 45px;
    }

    .fs-info {
        font-size: 24px;
    }

    .fs-btn {
        font-size: 18px;
    }
}

/* Estilos adicionais */
.highlight {
    color: #10316B;
}

.highlight1 {
    color: #3D93A3;
}

.background-dark {
    background-color: #50653E;
}

.text-white {
    color: white;
}

/*
    .btninitial {
        padding: 5px 30px; 
        border-radius: 10px; 
        font-size: 1.2rem; text-decoration: none;
        border: 3px solid #D2E48E;
        color:rgb(255, 255, 255);
    }
*/
.btn-custom {
    background-color: #ED9705;
    /* Cor de fundo */
    color: #50653E;
    /* Cor do texto */
    font-size: 18px;
    /* Tamanho do texto */
    padding: 10px 40px;
    /* Espaçamento interno */
    text-decoration: none;
    /* Sem sublinhado */
    border-radius: 0;
    /* Borda sem arredondamento */
    font-weight: bold;
    /* Texto em negrito */
    display: inline-block;
    /* Necessário para aplicar padding */
}



/* Media queries para ajustar o botão em diferentes resoluções */
@media (max-width: 992px) {
    .btn-custom {
        font-size: 16px;
        /* Tamanho do texto reduzido */
        padding: 8px 35px;
        /* Padding ajustado */
    }
}

@media (max-width: 768px) {
    .btn-custom {
        font-size: 14px;
        /* Tamanho do texto mais reduzido */
        padding: 6px 30px;
        /* Padding mais ajustado */
    }
}

@media (max-width: 576px) {
    .btn-custom {
        font-size: 12px;
        /* Menor tamanho do texto */
        padding: 5px 25px;
        /* Menor padding */
        width: 100%;
        /* Largura total para dispositivos móveis */
        box-sizing: border-box;
        /* Garante que o padding não adicione largura extra */
    }
}

/* Animação de transição suave */
.row a img {
    transition: all 0.3s ease;
}

/* Efeito de hover */
.row a img:hover {
    transform: translateY(-5px);
}


@media (max-width: 767px) {
    .hover-effect {
        max-width: 100% !important;
        /* Faz com que a imagem ocupe 100% da largura em dispositivos móveis */
        top: 23%;
    }
}

.hover-effect {
    position: absolute;
    bottom: 15%;
    right: 0;
    width: auto;
    height: auto;
    max-width: 30%;
    max-height: auto;
    object-fit: contain;
    z-index: 1;
    display: block;
    transition: transform 0.3s ease;

}


.hover-effect:hover {
    transform: translateY(-10px);
    /* Ajuste o valor para o tamanho do pulinho */
}