@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;800&display=swap');

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}
.header {
    display: flex;
    align-items: center;
    background-color: transparent; /* Adapte a cor de fundo conforme necessário */
    padding-top: 25px; /* Adapte o espaçamento interno conforme necessário */
    padding-left: 145px; /* Adapte o espaçamento interno conforme necessário */
    z-index: 10;
    position: absolute;
}

.header-logo {
    margin-right: 25px; /* Adapte o espaçamento entre o logo e a navbar conforme necessário */
}

.header-logo-img {
    width: 150px;
}

.header-navbar {
    display: flex;
}

.header-navbar a {
    margin-right: 20px; /* Adapte o espaçamento entre os links da navbar conforme necessário */
    text-decoration: none;
    color: #ffffffb4; /* Adapte a cor dos links conforme necessário */
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: font-size 0.5s ease; /* Adiciona uma transição suave */
}

.header-navbar a:hover {
    color: white;
    font-size: 1.2rem; /* Ajuste o tamanho desejado ao passar o mouse */
    transition: font-size 0.3s ease-in-out; /* Adiciona uma transição suave */
}

.social-icons {
    display: flex;
    position: fixed;
    right: 0;
    text-decoration: none;
    color: white;
}

.social-icons i {
    font-size: 1.25rem; /* Adapte o tamanho dos ícones de redes sociais conforme necessário */
    color: white;
    background-color: #00535B; /* Cor azul para o círculo */
    border-radius: 100%; /* Transforma o ícone em um círculo */
    padding: 10px; /* Espaçamento interno dentro do círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    cursor: pointer;
    transition: font-size 0.5s ease; /* Adiciona uma transição suave */
}

.social-icons i:hover {
    font-size: 1.5rem; /* Ajuste o tamanho desejado ao passar o mouse */
    transition: font-size 0.3s ease-in-out; /* Adiciona uma transição suave */
    background-color: #00353a;
}

.social-icons i.fa-facebook {
    margin-right: 9.25vw;
}

.social-icons i.fa-instagram {
    margin-right: 6.1vw;
}

.main-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Esconde partes do vídeo que podem ficar fora da div */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1; /* Coloca o vídeo atrás do conteúdo da div */
}

.main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.329);
}

.main-text {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 1rem;
    z-index: 2;
    display: flex;
    /* Adiciona flex container */
    align-items: center;
    /* Centraliza verticalmente */
    justify-content: center;
    height: 100%;
    /* Define a altura para ocupar toda a altura da .main */
}

.main-text-box {
    max-width: 750px;
    margin: 0 auto;
}

.main-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    white-space: nowrap;
    margin-bottom: 1rem;
}

.main-text p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1rem;
}

.about-section {
    background: url(../imgs/portobelo.webp) no-repeat left;
    background-size: 100%;
    background-color: #fdfdfd;
    overflow: hidden;
    height: 80vh;
}

.about-section::before {
    background: #444444;
}

.inner-container {
    width: 50%;
    height: 100%;
    float: right;
    background-color: #fdfdfd;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inner-container h1 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

.text {
    font-size: 15px;
    color: #545454;
    line-height: 30px;
    text-align: center;
}

@media screen and (max-width:1200px) {
    .inner-container {
        padding: 80px;
    }
}

@media screen and (max-width:1000px) {
    .about-section {
        background-size: 100%;
        padding: 100px 40px;
    }

    .inner-container {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .about-section {
        padding: 0;
    }

    .inner-container {
        padding: 60px;
    }
}

.about-section-two {
    background: url(../imgs/portobelo2.jpg) no-repeat right;
    background-size: 100%;
    background-color: #fdfdfd;
    overflow: hidden;
    height: 80vh;
}

.about-section-two::before {
    background: #444444;
}

.inner-container-two {
    width: 50%;
    height: 100%;
    float: left;
    background-color: #fdfdfd;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.inner-container-two h1 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
}

@media screen and (max-width:1200px) {
    .inner-container-two {
        padding: 80px;
    }
}

@media screen and (max-width:1000px) {
    .about-section-two {
        background-size: 100%;
        padding: 100px 40px;
    }

    .inner-container-two {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .about-section-two {
        padding: 0;
    }

    .inner-container-two {
        padding: 60px;
    }
}

@media screen and (max-width:1200px) {
    .invest .inner-container {
        padding: 80px;
    }
}

@media screen and (max-width:1000px) {
    .invest {
        background-size: 100%;
        padding: 100px 40px;
    }

    .invest .inner-container {
        width: 100%;
    }

    .invest h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width:600px) {
    .invest {
        padding: 0;
    }

    .invest .inner-container {
        padding: 60px;
    }

    .invest text {
        font-size: 12px;
        line-height: 18px;
    }
}

.invest {
    background: url(../imgs/portobelo3.webp) no-repeat left;
    background-size: contain;
    background-color: #fdfdfd;
    overflow: hidden;
    height: 80vh;
}

@media (max-width: 1600px) {

    .invest {
        height: 90vh;
    }
    
    .invest h1 {
        font-size: 28px;
    }

    .invest p{
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header {
        padding-left: 15px; /* Reduzindo o padding para a barra de navegação */
        padding-right: 15px; /* Adicionando padding à direita */
    }

    .header-navbar {
        flex-direction: column; /* Alterando a direção da barra de navegação para uma coluna */
    }

    .header-navbar a {
        margin-right: 0; /* Removendo o margin-right para os links da barra de navegação */
        margin-bottom: 15px; /* Adicionando um espaçamento inferior entre os links */
    }

    .header-logo {
        margin-right: 4rem; /* Removendo o margin-right para o logo */
        margin-bottom: 15px; /* Adicionando um espaçamento inferior */
    }

    .social-icons {
        display: none; /* Escondendo os ícones de redes sociais */
    }

    .main-text-box h2 {
        font-size: 1.35rem;
    }

    .main-text-box p {
        font-size: 1rem;
    }

    .about-section {
        height: unset;
    }

    .invest {
        height: unset;
        padding-bottom: 0.5rem;
    }

    .invest-container {
        height: unset;
    }

    .about-section-two {
        height: unset;
    }
}