@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;
    width: 100%;
    position: absolute;
    padding-bottom: 2rem;
}

.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;
}

.slider {
    height: 100vh;
    position: relative;
    z-index: 1;
}

.slider .list .item {
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.5) 30%);
}

.slider .list .item .content {
    position: absolute;
    left: 10%;
    bottom: 20%;
    width: 45vw;
    max-width: 80%;
    z-index: 1;
    color: white;
}

.slider .list .item .content p:nth-child(1) {
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slider .list .item .content h2 {
    font-size: 3rem;
    margin: 0;
}

.slider .list .item .content button {
    font-size: 1.25rem;
    text-decoration: none;
    background-color: #007782;
    color: white;
    border: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.25px;
    padding: 15px;
    border-radius: 1px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.7s ease;
}

.slider .list .item .content button:hover {
    background-color: #00353a;
    transition: 0.5s ease;
}

.slider .list .item.active {
    opacity: 1;
    z-index: 10;
}

@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}

.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3),
.slider .list .item.active button {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

.slider .list .item.active h2 {
    animation-delay: 1s;
}

.slider .list .item.active p:nth-child(3) {
    animation-duration: 1.3s;
}

.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    right: 50px;
    z-index: 100;
}

#prev {
    left: 5rem;
    /* Ajuste a posição conforme necessário */
    position: absolute;
}

#next {
    right: 20px;
    /* Ajuste a posição conforme necessário */
    position: absolute;
}

.arrows button {
    background-color: transparent;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: x-large;
    color: #eee;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover {
    background-color: #eeeeee41;
    cursor: pointer;
}

.empreendimentos {
    width: 100%;
    padding: 40px 0;
}

.empreendimentos_html {
    padding-top: 6rem;
}

.empreendimentos h2 {
    color: #007782;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    padding: 25px;
    left: 6%;
    position: absolute;
    line-height: 1.235;
    z-index: 10;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    z-index: 1;
}

.slide-container {
    margin: 0 30px;
    overflow: hidden;
    padding-top: 8rem;
    padding-left: 15rem;
    padding-bottom: 2rem;
    height: 100%;
}

.swiper-slide {
    transition: 0.5s ease-in;
}

.swiper-slide:hover {
    scale: 105%;
    transition: 0.5s ease-out;
}

.card {
    background: #fff;
    border-radius: 8px;
}

.card .image-box {
    height: 500px;
    width: 500px;
}

.card .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

.card .profile-details {
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding-top: 15px;
}

.profile-details .name {
    font-size: 25px;
    font-weight: 700;
    color: #007782;
}

.profile-details .job {
    font-size: 20px;
    font-weight: 500;
    color: #4d4d4d;
}

.porto-belo {
    position: relative;
    height: 100vh;
    background-image: url("../imgs/portobelo.webp");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Para centralizar o texto dentro dos elementos */
}

.porto-belo h4,
.porto-belo h1,
.porto-belo p,
.porto-belo button {
    margin: 10px 0;
    /* Adapte o espaçamento entre os elementos conforme necessário */
    z-index: 2;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.61);
    /* Cor preta semi-transparente para o overlay */
    z-index: 1;
}

.overlay p {
    color: transparent;
}

.porto-belo button {
    font-size: 1.25rem;
    text-decoration: none;
    background-color: #007782;
    color: white;
    border: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.25px;
    padding: 15px;
    border-radius: 1px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.porto-belo button a {
    text-decoration: none;
    color: white;
}

.porto-belo button:hover {
    background-color: #00353a;
    transition: 0.5s ease;
}

.porto-belo p {
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.name-job a {
    text-decoration: none;
    color: #007782;
}

@media (max-width: 1600px) {
    .card .image-box {
        height: 23rem;
        width: 23rem;
    }

    .slide-container {
        padding-left: unset;
        padding-bottom: 5rem;
    }
}

@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 */
    }

    .slider .list .item .content {
        bottom: 17%;
        /* Ajustando a posição do conteúdo do slider */
        width: 90%;
        /* Reduzindo a largura do conteúdo do slider */
        text-align: center;
        /* Centralizando o texto */
    }

    .slider .list .item .content h2 {
        font-size: 2rem;
        padding-top: 1rem;
    }

    #next {
        right: -25px;
    }

    .swiper-slide {
        padding-right: 0;
    }

    .empreendimentos_index {
        height: 80vh;
    }

    .empreendimentos h2 {
        left: 3%;
        /* Ajustando a posição do título "Empreendimentos" */
    }

    .empreendimentos_html {
        padding-top: 15rem;
    }

    .slide-container {
        padding-left: 0;
        /* Removendo o padding à esquerda */
        padding-right: 0;
        /* Removendo o padding à direita */
    }

    .porto-belo h1,
    .porto-belo h4,
    .porto-belo p,
    .porto-belo button {
        margin: 10px 0;
        /* Adapte o espaçamento entre os elementos conforme necessário */
    }

    .porto-belo p {
        font-size: 0.75rem;
    }
}