* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0caff7;
}

.container {
    position: relative;
    padding: 15px;
    width: 1800px;
    margin: 150px auto 0 auto;
}

.gallery-wrapper {
    overflow-x: auto;
}

.gallery {
    display: flex;
    flex-flow: row nowrap;
    gap: 15px;
}

.arrow-left,
.arrow-right {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    font-size: 20px;
    width: 40px;
    color: #fff;
    transition: all 600ms ease-in-out;
    background: linear-gradient(to left, transparent 0%, black 200%);
    opacity: 0.1;
    cursor: pointer;
    border: none;
    line-height: 450px;
}

.arrow-left:hover,
.arrow-right:hover {
    opacity: 1;
}

.arrow-left {
    border-radius: 50px 0px 0px 50px;
}

.arrow-right {
    right: 0;
    left: auto;
    text-align: right;
    background: linear-gradient(to right, transparent 0%, black 200%);
    border-radius: 0px 50px 50px 0px;
}

.item {
    width: 900px;
    height: 650px;
    flex-shrink: 0;
    transition: all 600ms ease-in-out;
    opacity: 0.9;
    border-radius: 50px 50px 50px 50px;
}

.current-item {
    opacity: 1;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cyan { background: cyan; }
.deeppink { background: deeppink; }
.turquoise { background: turquoise; }
.darkblue { background: darkblue; }
.purple { background: purple; }

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.quem-somos img.fade-in-element {
    transition-delay: 0.2s;
}

.quem-somos .texto-quem-somos h1.fade-in-element {
    transition-delay: 0.5s;
}

.quem-somos .texto-quem-somos h2.fade-in-element {
    transition-delay: 0.8s;
}

.quem-somos .texto-quem-somos h3.fade-in-element {
    transition-delay: 1.1s;
}

.quem-somos{
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 100px;
    width: fit-content;
    margin: 150px auto 0 auto;
}

.quem-somos img{
    width: 800px;
    height: 550px;
    border-radius: 50px 50px 50px 50px;
    box-shadow: 10px 10px 10px #464646;
}

.quem-somos .texto-quem-somos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    max-width: 600px;
}

.quem-somos h1 {
    color: black;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.quem-somos h2 {
    color: black;
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 40px;
}

.quem-somos h3 {
    color: black;
    font-size: 1.2em;
    line-height: 1.5;
}

.servicos {
    background-image: url('../img/carwash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    padding: 80px 20px;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px auto 0 auto;
}

.servicos-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 60px;
    padding-top: 80px;
    padding-bottom: 60px;
    border-radius: 10px;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.titulo-servicos-com-linhas {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    max-width: 1200px;
}

.titulo-servicos-com-linhas h2 {
    font-size: 1rem;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    margin: 0 30px;
    white-space: nowrap;
    letter-spacing: 2px;
}

.linha-separadora {
    display: block;
    flex-grow: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    max-width: 1000px;
    min-width: 50px;
}

.lista-de-servicos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 960px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.servico-item {
    flex-basis: calc(33.333% - 27px);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 35px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.6);
}

.servico-item h3 {
    color: #0caff7;
    font-size: 1.6em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-ver-mais-servicos {
    display: inline-block;
    background-color: #0caff7;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-ver-mais-servicos:hover {
    background-color: #098acb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: black;
}

.produtos {
    background-color: whitesmoke;
    position: relative;
    text-align: center;
    padding: 80px 20px;
    min-height: 1300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px auto 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 1800px;
}

.produtos-overlay {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 10px;
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    color: #333;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.titulo-produtos-com-linhas {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    max-width: 1200px;
}

.titulo-produtos-com-linhas h2 {
    font-size: 2.2em;
    color: #0caff7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin: 0 30px;
    white-space: nowrap;
    letter-spacing: 2px;
    font-weight: bold;
}

.linha-separadora-produtos {
    display: block;
    flex-grow: 1;
    height: 2px;
    background-color: #0caff7;
    max-width: 1000px;
    min-width: 50px;
}

.lista-de-produtos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
}

.produto-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.produto-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.produto-item img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.produto-item h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.produto-item p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.btn-solicitar-orcamento {
    display: inline-block;
    background-color: #0caff7;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-solicitar-orcamento:hover {
    background-color: #098acb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: black;
}

@media only screen and (max-width: 1600px) {
    .container {
        width: 1500px;
        padding: 10px;
    }

    .item {
        width: 600px;
        height: 450px;
    }

    .arrow-left,
    .arrow-right {
        line-height: 337px;
        width: 35px;
        font-size: 18px;
    }
    
    .quem-somos {
        display: flex;
        align-items: center;
        gap: 70px;
    }

    .quem-somos img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-left: 0;
    }

    .quem-somos .texto-quem-somos {
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 730px) {
    .container {
        max-width: 100%;
        padding: 0 5px;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery {
        gap: 5px;
        min-width: fit-content;
    }

    .item {
        width: calc(100vw - 10px);
        height: auto;
        max-height: 350px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .arrow-left,
    .arrow-right {
        width: 25px;
        font-size: 14px;
        line-height: 150px;
        opacity: 0.7;
    }

    .arrow-left {
        left: 0px;
        right: auto;
    }

    .arrow-right {
        right: 0px;
        left: auto;
    }

    .quem-somos {
        flex-direction: column;
    }

    .quem-somos img {
        display: none;
    }

    .quem-somos h1 {
        font-size: 2em;
    }

    .quem-somos h2 {
        font-size: 1em;
    }

    .quem-somos h3 {
        font-size: 1em;
    }

    .servicos {
        margin: 5px auto 0 auto;
    }

    .servicos-overlay {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .titulo-servicos-com-linhas {
        margin-bottom: 25px;
    }
    .titulo-servicos-com-linhas h2 {
        font-size: 1em;
    }
    .linha-separadora {
        height: 1px;
    }

    .lista-de-servicos {
        gap: 20px;
        margin-top: 25px;
        padding: 0 5px;
    }

    .servico-item {
        max-width: 300px;
        padding: 18px 12px;
    }

    .servico-item h3 {
        font-size: 1em;
        margin-bottom: 6px;
    }

    .btn-ver-mais-servicos {
        font-size: 0.9em;
        padding: 12px 25px;
        margin-top: 30px;
        width: 85%;
        max-width: 280px;
    }

    .produtos {
        padding: 40px 10px;
        margin-top: 50px;
        min-height: 2600px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .produtos-overlay {
        padding: 30px 15px;
    }

    .titulo-produtos-com-linhas {
        margin-bottom: 30px;
    }

    .titulo-produtos-com-linhas h2 {
        font-size: 1.6em;
        margin: 0 15px;
        letter-spacing: 1px;
    }

    .linha-separadora-produtos {
        min-width: 20px;
    }

    .lista-de-produtos {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 25px;
        padding: 0 5px;
    }

    .produto-item {
        padding: 20px;
    }

    .produto-item img {
        max-width: 90px;
        margin-bottom: 15px;
    }

    .produto-item h3 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .produto-item p {
        font-size: 0.85em;
    }

    .btn-solicitar-orcamento {
        font-size: 0.9em;
        padding: 12px 25px;
        margin-top: 30px;
        width: 85%;
        max-width: 280px;
    }
}