@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0F172A;
    color: #FFFFFF;
}

/* Seção de Clientes */
.clientes {
    padding-top: 50px;
}

.clientes h1 {
    font-size: 2.5rem;
    color: #a6cf4e;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center; 
    font-family: "Montserrat", serif;
}

.clientes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cliente {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.cliente:hover {
    transform: scale(1.1);
}

.cliente img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
    padding: 10px;
}

/* ---Carrossel de Projetos--- */
.clientes-projetos {
    text-align: center;
    padding: 60px 20px;
    color: #f5f5f5;
}

.clientes-projetos h1 {
    font-size: 2.5rem;
    color: #a6cf4e;
    font-family: "Montserrat", serif;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Swiper container */
.swiper-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

/* Slides */
.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 85%;
    max-width: 900px;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Sombra sutil para destacar */
}

/* Descrição */
.descricao {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #f5f5f5;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: 0.3s ease-in-out;
}

/* Efeito hover para destacar o texto */
.swiper-slide:hover .descricao {
    background: rgba(0, 0, 0, 0.5);
}

/* Botões de navegação */
.swiper-button-prev,
.swiper-button-next {
    color: #cbfd60 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
    

/* Paginação - Bolinhas */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent !important;
    border: 2px solid #cbfd60 !important;
    opacity: 0.6;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    background: #cbfd60 !important;
    opacity: 1;
}


/*---Call to Action--- */
.cta {
    background: #82bfc0;
    color: #0F172A;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.cta h1 {
    font-size: 2.5rem;
    color: #0F172A;
    font-weight: 500;
    margin-bottom: 10px;
}

.cta p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    background: #004aad;
    color: #f0f4ff;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #0658c2;
}

/* Responsividade */
@media (max-width: 768px) {
    .clientes-container {
        flex-direction: row;
        align-items: center;
    }

    .projetos-container {
        grid-template-columns: 1fr;
    }
}
