/*------------------------------------------------------------------------------------------------------------------*/
/* BANNER */
/*------------------------------------------------------------------------------------------------------------------*/

#banner-home {
    height: 40vh;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#banner-home h1, #banner-home h1 strong, #banner-home p {
    margin-bottom: 20px;
}

#banner-home h1 {
    color: var(--texto);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

#banner-home h1 strong {
    color: var(--texto);
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
}

#banner-home p {
    color: var(--texto);
}

#banner-home .container {
    margin-top: auto;
    margin-bottom: auto;
    padding-right: 25%;
}

/* MOBILE */
@media (max-width:1200px) {
    #banner-home {
        position: relative;
		background-position-x: left;
    }
    
    #banner-home .container {
        position: relative;
        z-index: 2;
    }
}

@media (max-width:999px) {
    #banner-home {
        text-align: center;
    }

    #banner-home .container {
        padding-right: 2%;
        padding-left: 2%;
    }

    #banner-home h1 strong {
        font-size: 2.2rem;
    }
}

/*------------------------------------------------------------------------------------------------------------------*/
/* CLIENTES SWIPER */
/*------------------------------------------------------------------------------------------------------------------*/

/* CLIENTES - CARROSSEL LOGO */

#clientes .swiper-container {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}

#clientes .swiper-pagination {
    position: absolute;
    bottom: 10px; 
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

#clientes .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px !important;
    width: 150px !important;
    flex-shrink: 0;
}

#clientes .swiper-slide img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.swiper-slide-active img {
    transform: scale(1.1);
}

/*------------------------------------------------------------------------------------------------------------------*/
/* GERAL */
/*------------------------------------------------------------------------------------------------------------------*/

#depoimentos, #clientes, #nossos-produtos {
    text-align: center;
}

#quem-somos img {
    object-fit: contain;
    max-width: 500px;
}

#home .produtos-box {
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

#home .produto {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    text-align: left;
    max-width: 800px;
    margin: auto;
    min-height: 350px;
    display: flex;
}

@media (max-width: 768px) {
    #home .produto {
        flex: 1 1 100%;
    }
}
