* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Quicksand';
}

::-webkit-scrollbar {
    display: none;
    /* Oculta a barra de rolagem */
}

.header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Para centralizar o conteúdo verticalmente */
    justify-content: center;
    /* Centraliza verticalmente */
    align-items: center;
    /* Centraliza horizontalmente */
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 2s ease-in-out;
    /* Transição para o fade */
    opacity: 0;
    animation: zoomContinuous 10s forwards;
}

@keyframes zoomContinuous {
    0% {
        transform: scale(1);
        /* Normal */
    }

    100% {
        transform: scale(1.1);
        /* Zoom leve */
    }
}


#bg1 {
    background-image: url(assets/images/fundo_placeholder_2.jpg);
    opacity: 1;
}

#bg2 {
    background-image: url(assets/images/fundo_placeholder.jpg);
}

#bg3 {
    background-image: url(assets/images/fundo_placeholder_3.jpg);
}

#bg4 {
    background-image: url(assets/images/fundo_placeholder_4.jpg);
}

#bg5 {
    background-image: url(assets/images/fundo_placeholder_5.jpg);
}

.logo-container {
    position: relative;
    text-align: center;
    z-index: 2;
}

.header-text {
    font-weight: 300px;
    color: white;
    /* Cor do texto */
    font-size: 50px;
    /* Tamanho da fonte */
    text-align: center;
    /* Centraliza o texto */
    margin: 0;
    /* Remove margens */
    letter-spacing: 20px;
}

.header-text-2 {
    font-weight: 300px;
    color: white;
    /* Cor do texto */
    font-size: 50px;
    /* Tamanho da fonte */
    text-align: center;
    /* Centraliza o texto */
    margin: 0;
    /* Remove margens */
    font-family: 'Alex Brush';
}

.logo-small-container {
    position: relative;
    /* Posiciona a logo menor na esquerda */
    left: 1px;
    background-color: transparent;
}

.logo-nav {
    max-width: 300px;
    /* Ajuste conforme necessário */
    width: auto;
    height: auto;
    /* Mantém a proporção */
    background-color: transparent;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 50, 40, 0.4);
    z-index: 1;
}

.navbar {
    transform: translateY(-450px);
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    margin-right: 30px;
    height: 1000px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 80px;
    position: relative;
    margin-right: 190px;
    margin-top: 850px;
    z-index: 3;

}

.nav-list li {
    margin: 0;
    /* Remove margens */
    position: relative;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: 1px solid white;
    transition: 0.3s ease;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-list a:hover {
    transform: scale(1.1);
    /* Aumenta o tamanho do botão em 10% */
}

/*--------------------------------- Primeira seção ---------------------------------*/

.content-section {
    height: 100vh;
    /* Altura da tela */
    display: flex;
    justify-content: center;
    /* Centraliza verticalmente */
    align-items: center;
    /* Centraliza horizontalmente */
    background-color: #dfdcd1;
    /* Cor de fundo da seção */
    text-align: center;
    /* Centraliza o texto */
    overflow-x: hidden;
}

#section1 {
    position: relative;
    text-align: center;
    padding-top: 20px;
}

#section1 p2 {
    font-size: 30px;
    /* Aumenta o tamanho da fonte */
    color: #3A4A40;
    /* Altera a cor do texto para um tom desejado */
    margin: 0;
    /* Remove margens padrão */
    position: absolute;
    /* Para posicionamento no topo */
    top: 43%;
    /* Alinha no topo da seção */
    left: 5%;
    /* Move o ponto de referência para o centro horizontal */
    transform: translateX(-50%, -50%);
    /* Centraliza o h2 em relação ao seu próprio tamanho */
    letter-spacing: 10px;
    font-weight: 300px;
    text-align: left;
    animation: fadeInY 1s forwards;
    opacity: 0;
    transition: opacity 1s;
}

@keyframes fadeInY {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slideContainer {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 850px;
    height: 550px;
    background: #f5f5f5;
    border-radius: 10px;
}

.slideContainer .slide .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 10px;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
    box-shadow: 0 5px 10px #303030;
    cursor: pointer;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 10px;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3) {
    left: 80%;
}

.slide .item:nth-child(4) {
    left: calc(80% + 220px);
}

.slide .item:nth-child(5) {
    left: calc(80% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6) {
    left: calc(50% + 660px);
    opacity: 0;
}



.item .content {
    position: absolute;
    top: 85%;
    left: 50px;
    width: 400px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: 'Quicksand';
    display: none;
    transition: 0.5s;
    z-index: 2;
}

.gray {
    filter: grayscale(100%);
}


.slide .item:nth-child(2) .content {
    display: block;
}


.content .name {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 300px;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
    font-family: 'Quicksand';
    letter-spacing: 5px;
    z-index: 2;
}

.content .des {
    z-index: 2;
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
}


.click-info {
    animation: animate 1.5s ease-in-out 1 forwards;
}


.material-symbols-outlined {
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24
}

.linha-vertical {
    width: 2px;
    background-color: #3A4A40;
    height: 90%;
    margin-right: 10%;
    left: 2%;
    position: absolute;
}

.circulo {
    width: 10px;
    height: 10px;
    background-color: #3A4A40;
    border-radius: 50%;
    position: absolute;
    top: 46%;
    left: -200%
}

.portfolio-button {
    top: 65%;
    left: 5%;
    display: flex;
    position: absolute;
    width: 200px;
    height: 50px;
    font-size: 18px;
    color: #3A4A40;
    font-family: 'Quicksand';
    background-color: rgba(0, 0, 0, 0.0);
    border-color: #3A4A40;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
    cursor: pointer;
}

.portfolio-button:hover {
    background-color: #3A4A40;
    color: #f5f5f5;
}

/*----------------------------- Videos -------------------------------*/

#section-video {
    background-color: #303030;
    position: relative;
}

.video-background {
    position: relative;
    /* O background cobre toda a tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    /* Garante que os vídeos fiquem lado a lado */
    z-index: 1;
}

.video-background video {
    width: 33.3%;
    height: 100%;
    /* O vídeo preenche toda a altura */
    object-fit: cover;
    /* Ajusta o vídeo para cobrir o espaço */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Overlay preto com 50% de opacidade */
    z-index: 2;
}

.video-content {
    z-index: 1000;
    position: absolute;
}

#video-text {
    color: white;
    letter-spacing: 5px;
    font-size: 20px;
}

.about-us-button {
    text-decoration: none;
    color: white;
    font-size: 18px;
    border: 1px solid white;
    transition: transform 0.2s ease;
    background-color: transparent;
    padding: 10px;
    font-family: 'Quicksand';
    cursor: pointer;
    letter-spacing: 1px;
    margin-top: 20px;
}

.about-us-button:hover {
    transform: scale(1.1);
    /* Aumenta o tamanho do botão em 10% */
}

/*--------------------------------- Segunda seção ---------------------------------*/

#section2 {
    position: relative;
    text-align: center;
    padding-top: 20px;
    background-color: #3A4A40;
}

#section2 p2 {
    font-size: 30px;
    /* Aumenta o tamanho da fonte */
    color: white;
    /* Altera a cor do texto para um tom desejado */
    margin: 0;
    /* Remove margens padrão */
    position: absolute;
    /* Para posicionamento no topo */
    top: 43%;
    /* Alinha no topo da seção */
    left: 5%;
    /* Move o ponto de referência para o centro horizontal */
    transform: translateX(-50%, -50%);
    /* Centraliza o h2 em relação ao seu próprio tamanho */
    letter-spacing: 10px;
    font-weight: 300px;
    text-align: left;
    animation: fadeInY 1s forwards;
    opacity: 0;
    transition: opacity 1s;
}

.review-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin-left: 200px;
}

.review {
    width: 380px;
    height: 80%;
    background-color: #3A4A40;
    /* Cor dos retângulos */
    margin-left: 50px;
    /* Espaço entre os retângulos */
    border: 2px solid #dfdcd1;
    background-color: transparent;
    display: flex;
    animation: fadeInX 1s forwards;
    opacity: 0;
    transition: opacity 1s;
    padding: 30px;
    padding-top: 60px;
    flex-direction: column;
}

.review p {
    text-align: left;
    font-size: 20px;
    font-family: 'Quicksand';
    color: white;
}

.review p1 {
    text-align: left;
    font-size: 24px;
    font-family: 'Quicksand';
    margin: 10px;
    margin-bottom: 40px;
    position: absolute;
    bottom: 0;
    color: white;
}

@keyframes fadeInX {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.star-rating {
    display: flex;
    justify-content: left;
    /* Centraliza as estrelas horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    position: absolute;
    bottom: 80px;
}

.star-icon {
    width: 30px;
    /* Tamanho do ícone */
    height: 30px;
    margin: 0 5px;
    /* Espaçamento entre as estrelas */
}

#circulo2 {
    background-color: white;
}

#linha2 {
    background-color: white;
}

/*--------------------------------- Ultima seção ---------------------------------*/

.parte-esquerda {
    flex: 55%;
    /* Coluna esquerda maior */
    background-color: #525050;
    /* Cor de fundo */
    padding: 20px;
    height: 100vh;
}

#titulo {
    font-size: 30px;
    color: white;
    letter-spacing: 5px;
    padding-top: 20px;
    transform: translateX(-9%);
}

#titulo2 {
    font-size: 30px;
    color: white;
    letter-spacing: 5px;
    padding-top: 90px;
    transform: translateX(-24%);
}

#subtitulo {
    font-size: 26px;
    color: white;
    text-align: left;
    margin-left: 50px;
    margin-bottom: 10px;
}

#texto-coluna {
    font-size: 18px;
    color: #dfdcd1;
    text-align: left;
    margin-left: 20px;
}

.container-coluna {
    column-gap: 50px;
    column-count: 2;
    padding-top: 100px;
    margin-bottom: 50px;
}

.parte-direita {
    flex: 45%;
    /* Coluna direita menor */
    background-image: url('assets/images/aerea_fabrica.JPEG');
    /* Imagem será aplicada aqui */
    background-size: cover;
    /* Para cobrir toda a coluna */
    padding: 20px;
    color: white;
    /* Cor do texto, caso necessário */
    height: 100vh;
    background-position: 20%;
}

.icon-button {
    background: transparent;
    /* Fundo transparente */
    border: none;
    /* Sem borda */
    color: white;
    /* Cor do ícone */
    font-size: 40px;
    /* Tamanho do ícone */
    cursor: pointer;
    /* Cursor de ponteiro ao passar o mouse */
    margin-left: 40px;
    /* Espaçamento à esquerda do ícone */
}

/*--------------------------------- Sobreposição ---------------------------------*/

.button-container {
    flex-direction: column;
    display: flex;
    position: fixed;
    z-index: 1000;
}

#scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    padding: 10px;
    width: 40px;
    height: 40px;
    background-color: #3A4A40;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    /* Certifique-se de que o botão esteja acima de outros elementos */
    box-shadow: 0 1px 5px #3A4A40;
    transition: transform 0.3s ease;
}

#scrollToTop:hover {
    transform: scale(1.1);
}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    width: 50px;
    height: 50px;
    background-color: white;
    color: #3A4A40;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    /* Certifique-se de que o botão esteja acima de outros elementos */
    box-shadow: 0 1px 5px #303030;
    font-size: 25px;
}

#whatsapp-button:hover {
    background-color: #3A4A40;
    color: white;
}

#instagram-button {
    color: white;
    transition: transform 0.3s ease;
}

#instagram-button:hover {
    transform: scale(1.1);
}




/*--------------------------------------- Para dispositivos Móveis ---------------------------------- */




/**-----------------------------------------------------------------------------------------------------*/


/* Ajustes para telas menores (celulares e tablets) */
@media screen and (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        /* Remove a rolagem horizontal */
        max-width: 100%;
        /* Garante que o conteúdo não ultrapasse a largura da viewport */
    }

    .header {
        display: flex;
        flex-direction: column;
        /* Alinha o conteúdo verticalmente */
        justify-content: center;
        /* Centraliza verticalmente */
        align-items: center;
        /* Centraliza horizontalmente */
        height: 100vh;
        /* Mantém o header ocupando toda a altura */
        padding: 0;
    }

    .header-text {
        font-size: 36px;
        /* Reduz o tamanho da fonte */
        letter-spacing: 10px;
        /* Ajusta o espaçamento das letras */
    }

    .header-text-2 {
        font-size: 40px;
        /* Reduz a fonte */
    }

    .navbar {
        transform: translateY(0);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: flex-start;
        height: auto;
        padding: 0;
        width: 0vh;
        margin-top: 40px;
    }

    .nav-list {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        margin-right: 0px;
        padding: 0;
        width: 100%;
        transform: translateY(430px);
        margin-left: 100px;
    }

    .nav-list a {
        font-size: 20px;
        padding: 8px 15px;
        text-align: center;
        width: 200px;
        margin-right: 180px;
    }

    .logo-container {
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-left: 10px;
        margin-bottom: 50px;
        padding: 0;
    }

    .logo-nav {
        max-width: 300px;
        transform: translateY(-85px);
        /* Reduz o tamanho da logo */
    }

    .background-image {
        background-size: cover;
        /* Garante que a imagem cubra a tela */
    }

    .overlay {
        background-color: rgba(0, 50, 40, 0.6);
        /* Torna a sobreposição mais evidente no mobile */
    }

    .navbar #instagram-button {
        transform: translateX(-50px);
    }

    #scrollToTop {
        display: none
    }

    #bg1 {
        background-image: url(assets/images/fundo_dispositivo_1.jpg);
        opacity: 1;
    }

    #bg2 {
        background-image: url(assets/images/fundo_dispositivo_2.jpg);
    }

    #bg3 {
        background-image: url(assets/images/fundo_dispositivo_3.jpg);
    }

    #bg4 {
        background-image: url(assets/images/fundo_dispositivo_4.jpg);
    }

    #bg5 {
        background-image: url(assets/images/fundo_dispositivo_5.jpg);
    }

    /*--------------------------- Primeira seção --------------------------*/

    .content-section {
        height: 100vh;
        /* Mantém a altura da tela */
        padding: 0;
        /* Remove margens/paddings adicionais */
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow-y: hidden
    }

    .slideContainer {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 102.5vh;
        border-radius: none;
        background: #f5f5f5;
        margin: 0;
        box-shadow: none;
    }

    .slideContainer .slide .item {
        border-radius: none;
        box-shadow: none;
    }

    .slide .item {
        width: 100%;
        height: 100%;
        margin: auto;
        top: 10%;
        left: 0;
        right: 0;
        border-radius: none;

    }

    .slide .item:nth-child(1),
    .slide .item:nth-child(2) {
        border-radius: none;
    }

    .slide .item:nth-child(3),
    .slide .item:nth-child(4),
    .slide .item:nth-child(5) {
        display: none;
        border-radius: 0;
    }

    .item .content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        padding: 20px;

    }

    .content .name {
        font-size: 25px;
        margin-right: 95px;
    }

    .content .des {
        font-size: 20px;
        margin-right: 95px;
    }

    .click-info {
        margin-right: 95px;
    }

    .slide-overlay {
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 0;
    }

    .circulo {
        display: none;
    }

    .linha-vertical {
        display: none;
    }

    .portfolio-button {
        position: absolute;
        /* Remove o posicionamento absoluto */
        display: inline-block;
        /* Mantém o botão visível */
        width: auto;
        /* Ajusta o tamanho automaticamente */
        height: 40px;
        /* Altura do botão */
        padding: 10px 20px;
        /* Adiciona espaçamento interno */
        font-size: 16px;
        /* Texto menor */
        background-color: rgba(0, 0, 0, 0.0);
        border: 1px solid white;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1000;
        margin-left: 80px;
    }

    .portfolio-button:hover {
        background-color: #3A4A40;
        color: #fff;
    }

    #section1 p2 {
        position: absolute;
        font-size: 25px;
        display: inline-flex;
        margin: 0;
        color: white;
        letter-spacing: 10px;
        font-weight: 300px;
        z-index: 1000;
        text-align: center;
        width: 100%;
        top: 0;
        margin-top: 50px;
        margin-left: 75px;
    }

    /*-------------------------- Video section -----------------------------*/

    .video-background video {
        height: 100%;
        /* Cada vídeo ocupa 1/3 da altura total */
        width: 100%;
        /* Largura total */
    }

    #video-text {
        font-size: 16px;
    }

    /*--------------------------- Segunda seção --------------------------*/

    #section2 {
        height: 120vh;
    }

    #section2 p2 {
        position: absolute;
        font-size: 25px;
        display: inline-flex;
        margin: 0;
        color: white;
        letter-spacing: 10px;
        font-weight: 300px;
        z-index: 1000;
        text-align: center;
        width: 100%;
        top: 0;
        margin-top: 30px;
        margin-bottom: 30px;
        margin-left: 50px;
    }

    .review-container {
        flex-direction: column;
        /* Empilha os elementos */
        justify-content: center;
        /* Centraliza verticalmente */
        align-items: center;
        /* Centraliza horizontalmente */
        margin: 0;
        /* Remove a margem lateral */
    }

    .review {
        width: 90%;
        height: auto;
        margin: 20px 0;
        padding: 20px;
    }

    .star-rating {
        position: static;
        margin-top: 20px;
    }

    .review p1 {
        position: static;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .review p {
        margin-bottom: 30px;
        text-align: left;
        margin-right: 10px;
        margin-left: 10px;
    }

    /*--------------------------- Última seção --------------------------*/

    #last-section {
        display: flex;
        flex-direction: column;
    }

    .parte-esquerda,
    .parte-direita {
        flex: none;
        /* Remove o flex de proporção */
        width: 100%;
        /* Ocupa toda a largura da tela */
        height: auto;
        /* Ajusta a altura conforme o conteúdo */
    }

    .parte-esquerda {
        display: flex;
        flex-direction: column;
        /* Empilha os elementos verticalmente */
        align-items: flex-start;
        /* Alinha o conteúdo à esquerda */
        padding: 20px;
    }

    #titulo,
    #titulo2,
    #subtitulo,
    #texto-coluna {
        transform: translateX(0);
        /* Remove o deslocamento horizontal */
        margin-left: 0;
        margin-right: 0;
        /* Remove margens adicionais */
        width: 100%;
        /* Garante que ocupe a largura disponível */
        margin-bottom: 20px;
    }

    #texto-coluna {
        font-size: 20px;
    }

    #titulo {
        margin-top: 150px;
    }

    #titulo2 {
        width: 100vw;
        font-size: 25px;
    }

    .container-coluna {
        column-count: 1;
        /* Altera para uma única coluna */
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .parte-direita {
        background-position: center;
        /* Ajusta a posição da imagem */
        height: 200px;
        /* Define uma altura específica para a imagem */
    }

    .parte-esquerda #instagram-button {
        font-size: 45px;
        margin-right: 30px;
    }

    /*---------------------------------- Sobreposição -------------------------------*/

    #whatsapp-button {
        font-size: 30px;
        width: 65px;
        height: 65px;
    }
}


/*--------------------------------------- Para 4K ---------------------------------- */




/**----------------------------------------------------------------------------------*/

@media screen and (min-width: 2560px) {

    .header-text {
        font-size: 80px;
    }

    .header-text-2 {
        font-size: 80px;
    }

    .logo-nav {
        max-width: 500px;
    }

    .navbar {
        transform: translateY(-400px);
    }

    .nav-list {
        margin-top: 1300px;
        margin-right: 360px;
    }

    .nav-list a {
        font-size: 28px;
    }

    #instagram-button {
        font-size: 70px;
    }

    /*--------------------- Primeira seção ----------------------- */

    #section1 p2 {
        font-size: 50px;
    }

    .portfolio-button {
        top: 65%;
        left: 5%;
        width: 300px;
        height: 80px;
        font-size: 30px;
    }


    .slideContainer {
        left: 55%;
        width: 1500px;
        height: 900px;
    }

    .item .content {
        width: 1000px;
    }

    .content .name {
        font-size: 40px;
    }

    .content .des {
        font-size: 30px;
    }

    /*--------------------- Video ----------------------- */

    #video-text {
        font-size: 30px;
    }

    .about-us-button {
        font-size: 25px;
    }

    /*--------------------- Segunda seção ----------------------- */

    #section2 p2 {
        font-size: 50px;
    }

    .review {
        width: 700px;
    }

    .review p {
        font-size: 30px;
    }

    .review p1 {
        font-size: 34px;
    }

    .star-icon {
        width: 50px;
        height: 50px;
        bottom: 100px;
    }

    /*--------------------- Última seção ----------------------- */

    #titulo {
        font-size: 50px;
        margin-top: 50px;
    }

    #titulo2 {
        font-size: 50px;
    }

    #subtitulo {
        font-size: 46px;
    }

    #texto-coluna {
        font-size: 38px;
    }

    /*--------------------- Sobreposição ----------------------- */

    #scrollToTop {
        bottom: 120px;
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    #whatsapp-button {
        padding: 10px;
        width: 90px;
        height: 90px;
        font-size: 50px;
    }
}


/*--------------------------------------- 1080p ---------------------------------- */




/**----------------------------------------------------------------------------------*/

@media screen and (min-width: 1980px) and (max-width: 2559px) {

    .header-text {
        font-size: 70px;
    }

    .header-text-2 {
        font-size: 70px;
    }

    .logo-nav {
        max-width: 400px;
    }

    .navbar {
        transform: translateY(-400px);
    }

    .nav-list {
        margin-top: 1300px;
        margin-right: 270px;
    }

    .nav-list a {
        font-size: 28px;
    }

    #instagram-button {
        font-size: 60px;
    }

    /*--------------------- Primeira seção ----------------------- */

    #section1 p2 {
        font-size: 40px;
    }

    .portfolio-button {
        top: 65%;
        left: 5%;
        width: 280px;
        height: 70px;
        font-size: 25px;
    }


    .slideContainer {
        left: 55%;
        width: 1200px;
        height: 900px;
    }

    .item .content {
        width: 1000px;
    }

    .content .name {
        font-size: 40px;
    }

    .content .des {
        font-size: 30px;
    }

    /*--------------------- Video ----------------------- */

    #video-text {
        font-size: 30px;
    }

    .about-us-button {
        font-size: 25px;
    }

    /*--------------------- Segunda seção ----------------------- */

    #section2 p2 {
        font-size: 50px;
    }

    .review {
        width: 600px;
        margin-left: 80px;
    }

    .review-container {
        margin-left: 400px;
    }

    .review p {
        font-size: 30px;
    }

    .review p1 {
        font-size: 34px;
    }

    .star-icon {
        width: 50px;
        height: 50px;
        bottom: 100px;
    }

    /*--------------------- Última seção ----------------------- */

    #titulo {
        font-size: 40px;
        margin-top: 50px;
    }

    #titulo2 {
        font-size: 40px;
    }

    #subtitulo {
        font-size: 42px;
    }

    #texto-coluna {
        font-size: 30px;
    }

    /*--------------------- Sobreposição ----------------------- */

    #scrollToTop {
        bottom: 120px;
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    #whatsapp-button {
        padding: 10px;
        width: 90px;
        height: 90px;
        font-size: 50px;
    }

}