

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

a{
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    width: 100%;
}

/*------- COVER ------------*/
.big-wrapper {
    background-image: url(./img/home-Copia.jpg);
    padding: 15px 0 15px;
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative; 
}

nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;

}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    width: 100px;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    padding: 8px 12px;
    position: relative;
    display: inline-block;

}

.nav-links ul li a{
    color: white;
    transition: 0.5s;
}

.nav-links ul li a:hover {
    color: #0144BB;
}


.text-box {
    align-items: center;
    justify-content: center;
    background-position: bottom;
    background-size: cover;
    color: white;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-box h1{
    font-size: 350%;
    margin: 10px 0 25px;
}

.text-box p {
    font-size: 20px;
    margin: 10px 0 15px;
}

.line {
    width: 300px;
    height: 2px;
    background: #FE4E01;
    margin: 10px auto;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    color: #FE4E01;
    border: 2px solid #FE4E01;
    padding: 12px 34px;
    font-size: 18px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.btn:hover{
    border: 1px solid #FE4E01;
    background: #FE4E01;
    transition: 1s;
    color: white;
}

.fa-bars {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    cursor: pointer;
    display: none;
}
nav .fa-solid {
    display: none;
}

@media screen and (max-width:720px){
    .text-box h1 {
        font-size: 25px;
    }
    .text-box p {
        font-size: 15px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links{
        position: fixed;
        top: 0;
        right: -200px; /* Inicialmente fora da tela */
        width: 200px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        transition: right 0.3s ease;
    }
    nav .fa-solid {
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
        padding: 30px;
    }
}

/* Impede a rolagem da página quando o menu estiver aberto */
body.menu-open {
    overflow: hidden;
}

.menu-open .fa-bars{
    display: none;
}
/*------- AREAS DE ATUAÇÃO ------------*/

.cards {
    max-width: 1280px;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.row {
    display: flex;
    justify-content: space-between;

}

.card {
    flex-basis: 30%;
    padding: 60px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    max-height: 468px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card:hover{
    transform: scale(1.1);
}

.icon {
    width: 64px;
    height: 64px;
}


.h3-card {
    font-weight: 600;
    margin: 16px 0;
    font-size: 100%;
}

.p-card {
    font-size: 90%;
    font-weight: 300;
    margin-bottom: 16px;
    max-width: 240px;
}

.card {
    box-shadow: 0 0 20px 0px rgba(20, 20, 20, 0.2);
}

@media screen and (max-width: 720px){

    .row {
        flex-direction: column; /* Empilha os cards verticalmente */
        align-items: center; /* Centraliza os cards */
    }

    .card {
        flex-basis: 90%; /* Ocupa 90% da largura da tela */
        max-height: auto; /* Remove o limite de altura fixa */
        padding: 40px 16px; /* Ajusta o padding para telas menores */
        margin-bottom: 20px; /* Adiciona espaçamento entre os cards */
    }

    .icon {
        width: 48px; /* Reduz o tamanho do ícone */
        height: 48px;
    }

    .h3-card {
        font-size: 90%; /* Ajusta o tamanho da fonte */
    }

    .p-card {
        font-size: 85%; /* Ajusta o tamanho da fonte para texto */
        max-width: 100%; /* Permite que o texto ocupe toda a largura disponível */
    }
}

/*-------- SERVIÇOS ---------*/
.grid-container {
    max-width: 1280px;
    margin: auto;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.p-subtitle {
    text-align: center;
    margin: 10px 0;
    color: #0144BB;
    font-size: 20px;
}

.h1-title {
    text-align: center;
    font-size: 45px;
    margin: 10px 0;
    font-weight: 700;
}

.h1-title span {
    color: #FE4E01;
    text-decoration: underline;
}

.grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1100px;
    padding-top: 30px;
}

.box{
    min-height: 320px;
    width: 350px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 6px;
    box-shadow: 0px 15px 25px rgba(20, 20, 20, 0.2);
}

.box .two-line-box{
    width: 525px;
}
 .box .fa-solid{
    display: block;
    font-size: 40px;
    margin: 25px;
    color: #FE4E01;
}

.box h2{
    text-align: center;
    font-weight: 550;
    margin-bottom: 13px;
    font-size: 21px;
}

.box p{
    text-align: center;
    margin-bottom: 17px;
    font-weight: 300;
    max-width: 250px;
}

.box a{
    text-align:center
}

.box:hover{
    background-color: #FE4E01;
}

.box:hover .fa-solid{
    color: white;
}

.box:hover .a-ver-mais{
    border-bottom: 2px solid white;
}
.a-ver-mais{
    color: black;
    font-weight: 300;
    display: inline-block;
    border-bottom: 2px solid #FE4E01;
    padding-bottom: 5px;
}

@media screen and (max-width: 720px){
    .grid-container {
        padding-top: 50px;
    }

    .p-subtitle {
        font-size: 16px;
    }

    .h1-title {
        font-size: 30px;
    }

    .grid {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .box {
        width: 90%; /* Ajusta a largura da caixa para caber na tela menor */
        margin: 10px 0;
    }

    .box .two-line-box {
        width: 100%;
    }

    .box p {
        font-size: 14px;
    }

    .box .fa-solid {
        font-size: 30px;
    }
}

/*-------- CONHEÇA NOSSOS BENEFICIOS ---------*/

.container{
    max-width: 1280px;
    margin: auto;
    padding: 100px 0 100px 0;
}

.container .p-subtitle{
    margin: 10px 0 35px 0;
}

.estrutura-container{
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.img-sobre{
    width: 55%;
    height: auto;
    transition: transform 0.3s ease;
}

.sobre{
    flex: 1;
    padding: 40px 0;
}

.sobre-topicos{
    display: flex;
    justify-content: flex-start;
    align-items: top;
    gap: 20px;
}

.sobre-topicos i{
    margin-top: 5px;
    font-size: 25px;
    color: #FE4E01;
}

.sobre p{
    margin-bottom: 20px;
}

.sobre h2{
    margin-bottom: 10px;
}

.sobre h1{
    text-align: left;
}

.p-frase {
    text-align: center;
    font-size: 28px;
    margin: 35px 0 0 0;
}

.p-frase span {
    color: #FE4E01;
}

@media screen and (max-width: 720px){
    .container {
        padding: 50px 20px;
    }

    .estrutura-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .img-sobre {
        width: 90%; /* Ajusta a largura para telas menores */
    }

    .sobre {
        padding: 20px 0;
    }

    .sobre h1, 
    .sobre h2 {
        text-align: center; /* Centraliza títulos em telas menores */
    }

    .p-frase {
        font-size: 20px; /* Reduz tamanho da fonte */
        margin: 20px 0;
    }

    .sobre-topicos {
        flex-direction: column; /* Alinha os tópicos verticalmente */
        align-items: center;
    }

    .sobre-topicos i {
        font-size: 20px; /* Ajusta o tamanho do ícone */
    }
}

/*-------- ENTRE EM CONTATO ---------*/

.contato-background {
    position: relative;
    height: 100vh;
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/contato.jpg'); /* Adicione sua imagem aqui */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.5);
    text-align: left;
    width: 100%;
    max-width: 700px;
}

.form-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-container p{
    padding: 5px;
}

.form-container input,
.form-container textarea, .form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 0px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f2f2f2;
}

.form-container button {
    width: 100%;
    padding: 10px;
    background-color: #FE4E01;
    color: white;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-container button:hover {
    background-color: #e54300;
}

@media (max-width: 720px) {
    .form-container {
        padding: 20px;
        width: 90%;
    }

    .form-container h2 {
        font-size: 20px;
    }

    .form-container input,
    .form-container textarea {
        font-size: 14px;
    }

    .form-container button {
        font-size: 14px;
    }
}

/*-------- FOOTER ---------*/

footer {
    background-color: #023047;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact-location {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}

.footer-contact-location p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-social-icons {
    margin-top: 20px;
}

.footer-social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
}

.footer-social-icons a:hover {
    color: #FE4E01;
}

.footer-rights {
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}

@media (max-width: 720px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-links, .footer-contact-location {
        text-align: center;
    }
}


/*========== SOBRE ==========*/

/*-------- COVER ---------*/
.cover{
    background-image: url(./img/home-Copia.jpg);
    padding: 15px 0 15px;
    width: 100%;
    min-height: 65vh;
    background-position: center;
    background-size: cover;
    position: relative; 
}

.cover-text{
    max-width: 1280px;
    color: white;
    padding: 250px 0 150px 0;
    margin: 0 auto;
}

.cover-line{
    width: 100px;
    height: 2px;
    background: #FE4E01;
    margin: 10px 0;
    border-radius: 10px;
}

.cover-text h1{
    font-size: 350%;
    margin-top: 10px;
}

.cover-text p{
    font-size: 20px;
    margin-bottom: 15px;
}

@media screen and (max-width: 720px) {
    .cover {
        min-height: 50vh; /* Reduz a altura mínima para dispositivos menores */
        padding: 10px 0; /* Ajusta o padding */
    }

    .cover-text {
        padding: 150px 20px 100px 20px; /* Ajusta o padding para telas menores */
        text-align: center; /* Centraliza o texto */
    }

    .cover-line {
        margin: 0 auto;
    }

    .cover-text h1 {
        font-size: 200%; /* Reduz o tamanho da fonte */
    }

    .cover-text p {
        font-size: 16px; /* Ajusta o tamanho da fonte */
    }
}

/*-------- INTRODUÇÃO ---------*/
.section-about-one{
    max-width: 1280px;
    margin: 100px auto 0;
    text-align: center;
}

.section-about-one h2{
    font-size: 30;
    font-weight: 300;
}

.section-about-one span{
    color: #FE4E01;
}

@media screen and (max-width: 720px) {
    .section-about-one {
        margin: 50px auto 0; /* Reduz o espaço superior para dispositivos menores */
        padding: 0 20px; /* Adiciona padding para melhor visualização */
    }

    .section-about-one h2 {
        font-size: 24px; /* Diminui o tamanho da fonte do título */
    }

    .section-about-one span {
        font-size: 24px; /* Ajusta o tamanho do texto destacado */
    }
}

/*-------- NOSSA HISTORIA ---------*/
.section-about-two{
    max-width: 1280px;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin: 0 auto;
    padding-top: 100px;
}

.about-text{
    flex: 1;
}

.about-text .h1-title{
    text-align: left;
}

.about-text p{
    font-size: 20px;
}

.about-text span{
    color: #FE4E01;
}

/*-------- VALORES E MISSÃO ---------*/
.section-about-three{
    max-width: 1280px;
    margin: auto;
    padding-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/*-------- COMPROMISSO COM A QUALIDADE E SEGURANÇA ---------*/
.section-about-four{
    background-color: #023047;
    padding: 80px 0;
    margin-top: 100px;
}

.section-about-four span{
    color: #FE4E01;
}

.section-about-four p{
    color: white;
}

.section-about-four h1{
    color: white;
}

.grid-about{
    max-width: 1280px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 auto;
    padding: 30px 0 0;
}

.box-about{
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.box-about:hover {
    transform: scale(1.05);
}

.box-about p{
    text-align: center;
}

.box-about i{
    font-size: 35px;
    color: #FE4E01;
}

.about-line{
    width: 200px; 
    height: 2px;
    background: #FE4E01;
    margin: 10px 0;
    border-radius: 10px;
}

@media screen and (max-width: 720px) {
    /* Section About Two */
    .section-about-two {
        flex-direction: column; /* Alinha os elementos verticalmente */
        gap: 20px; /* Reduz o espaçamento entre os elementos */
        padding-top: 50px; /* Ajusta o espaçamento superior */
        align-items: center;
    }

    .about-text .h1-title {
        text-align: center; /* Centraliza o título */
    }

    .about-text p {
        font-size: 18px; /* Reduz o tamanho da fonte */
        text-align: center; /* Centraliza o texto */
    }

    /* Section About Three */
    .section-about-three {
        padding-top: 50px; /* Reduz o espaçamento superior */
    }

    /* Section About Four */
    .grid-about {
        grid-template-columns: repeat(2, 1fr); /* Reduz para duas colunas */
        gap: 20px; /* Aumenta o espaçamento entre os itens */
        padding: 20px 0; /* Ajusta o padding */
    }

    .box-about i {
        font-size: 28px; /* Ajusta o tamanho dos ícones */
    }

    .box-about p {
        font-size: 16px; /* Ajusta o tamanho da fonte */
    }

    .about-line {
        width: 150px; /* Reduz a largura da linha */
    }
}
/*-------- CHAMADA PARA AÇÃO ---------*/
.section-about-five{
    position: relative;
    height: 70vh;
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/contato.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.about-five-content{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.about-five-content div{
    text-align: left;
    width: 500px;
    gap: 60px;
}

.about-five-content h1{
    font-size: 45px;
    margin: 10px 0;
    font-weight: 700;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    padding: 12px 34px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #FE8402;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}
  
  .btn-about i {
    margin-left: 10px;
    font-size: 18px;
}
  

  .btn-about:hover {
    background-color: #FE4E01;
}

@media screen and (max-width: 720px) {
    .section-about-five {
        height: 50vh; /* Reduz a altura para telas menores */
        padding: 20px; /* Adiciona padding para ajuste do conteúdo */
        text-align: center; /* Centraliza o texto */
    }

    .about-five-content {
        flex-direction: column; /* Alinha os elementos verticalmente */
        justify-content: center; /* Centraliza os elementos */
        align-items: center; /* Centraliza horizontalmente */
    }

    .about-five-content div {
        width: 100%; /* Ajusta a largura para ocupar o espaço disponível */
        text-align: center; /* Centraliza o texto */
        gap: 20px; /* Reduz o espaçamento interno */
    }

    .about-five-content h1 {
        font-size: 30px; /* Reduz o tamanho da fonte */
        margin: 20px 0; /* Adiciona espaçamento adequado */
    }

    .btn-about {
        padding: 10px 20px; /* Ajusta o padding do botão */
        font-size: 16px; /* Reduz o tamanho da fonte do botão */
    }

    .btn-about i {
        font-size: 16px; /* Ajusta o tamanho do ícone */
    }
}
/*========== SERVIÇOS ==========*/

/*-------- INTRODUÇÃO ---------*/
.section-services-one{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 100px 0 0 0;
}

.section-services-one h2{
    width: 800px;
    font-size: 30;
    font-weight: 300;
}

.section-services-one span{
    color: #FE4E01;
}

/*-------- LISTA DE SERVIÇOS ---------*/
.section-services-two{
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 100px;
}

.subtitle-services{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #023047;
    color: #fff;
    padding: 15px;
    text-align: center;
    margin: 0;
    cursor: pointer;
}

.subtitle-title {
    font-size: 35px;
    font-weight: 650;
}

.subtitle-subtitle{
    width: 500px;
    text-align: left;
    color: #0144BB;
    font-size: 20px;
}

.subtitle-services i{
    font-size: 40px;
    color: #FE4E01;
}

.services-content{
    padding-top: 50px;
}

.grid-services{
    display: none;
}

.grid-services.expanded {
    display: block;
}

.about-services{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
}

.line-with-three{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 30px;
}

.line-with-two{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 30px;
}

.line-with-one{
    padding-top: 30px;
}

.line-with-two .box-services{
    width: 100%;
}

.box-services{
    min-height: 150px;
    width: 100%;
    padding: 20px;
    box-shadow: 0px 15px 25px rgba(20, 20, 20, 0.2);
    display: flex;
}

.box-services i{
    font-size: 40px;
    padding-right: 15px;
    color: #FE4E01;
}

.box-services:hover{
    background-color: #FE4E01;
}

.box-services:hover i{
    color: white;
}

@media screen and (max-width: 720px) {
    .section-services-one {
        flex-direction: column; /* Ajusta os elementos para uma coluna */
        gap: 20px;
        padding: 50px 20px 0;
        text-align: center; /* Centraliza o texto */
    }

    .section-services-one h2 {
        width: 100%; /* Faz o texto ocupar todo o espaço disponível */
        font-size: 22px; /* Reduz o tamanho da fonte */
    }

    .section-services-two {
        padding-top: 50px; /* Reduz o espaçamento superior */
    }

    .subtitle-services {
        flex-direction: column; /* Ajusta os subtítulos em coluna */
        gap: 10px; /* Adiciona espaçamento entre os elementos */
        text-align: center;
        padding: 20px; /* Ajusta o padding para telas menores */
    }

    .subtitle-title {
        font-size: 24px; /* Reduz o tamanho da fonte */
    }

    .subtitle-subtitle {
        width: 100%; /* Ajusta a largura para ocupar o espaço disponível */
        font-size: 18px; /* Reduz o tamanho da fonte */
    }

    .line-with-three {
        grid-template-columns: 1fr; /* Alinha os itens em uma única coluna */
    }

    .line-with-two {
        grid-template-columns: 1fr; /* Alinha os itens em uma única coluna */
    }

    .box-services {
        flex-direction: column; /* Ajusta a direção dos itens para coluna */
        align-items: center; /* Centraliza o conteúdo */
        text-align: center;
    }

    .box-services i {
        margin-bottom: 10px; /* Adiciona espaçamento entre o ícone e o texto */
    }
}
/*-------- PORTIFÓLIO DE PROJETOS ---------*/
.section-services-three {
    padding: 100px 20px;
    text-align: center;
}

/* Estilos da galeria */
.portfolio-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.portfolio-gallery {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding: 10px;
    width: 100%;
}

.portfolio-item {
    flex: 0 0 auto;
    width: 600px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item:hover {
    transform: scale(1.05);
}


/* Esconder barra de rolagem no navegador */
.portfolio-gallery::-webkit-scrollbar {
    display: none;
}

.portfolio-gallery {
    -ms-overflow-style: none; /* Internet Explorer */
    scrollbar-width: none; /* Firefox */
}

/* Estilos dos botões de rolagem */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.scroll-btn.left {
    left: 10px;
}

.scroll-btn.right {
    right: 10px;
}

@media screen and (max-width: 720px) {
    .section-services-three {
        padding: 50px 15px;
        text-align: center; /* Centraliza o texto */
    }

    .portfolio-wrapper {
        flex-direction: column; /* Alinha os elementos em coluna */
        align-items: flex-start;
        gap: 20px;
        padding-top: 20px;
    }

    .portfolio-gallery {
        gap: 10px; /* Reduz o espaçamento entre os itens */
        padding: 5px; /* Ajusta o padding para telas menores */
    }

    .portfolio-item {
        width: 100%; /* Faz com que os itens ocupem toda a largura disponível */
        height: 300px; /* Ajusta a altura para se adequar a telas menores */
    }

    .portfolio-item img {
        object-fit: cover; /* Mantém a proporção das imagens */
    }

    .scroll-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem; /* Reduz o tamanho dos botões */
    }

    .scroll-btn.left {
        left: 5px; /* Ajusta a posição para telas menores */
    }

    .scroll-btn.right {
        right: 5px; /* Ajusta a posição para telas menores */
    }
}