
/* ==========================================================================
   SEÇÃO DEPOIMENTOS GOOGLE (NOVO LAYOUT COM IMAGENS)
   ========================================================================== */
.secao-depoimentos-google {
    background-color: #FFFFFF !important; /* Altera o fundo de cinza para branco */
    padding: 60px 0;
    width: 100%;
    box-sizing: border-box;
}

.depoimentos-topo {
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
}

.img-titulo-depoimentos {
    max-width: 580px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.container-carrossel-depoimentos {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 60px; 
    box-sizing: border-box;
}

/* Força as imagens a ficarem lado a lado na horizontal */
.google-reviews-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px; 
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 15px 5px;
}

/* Esconde a barra de rolagem horizontal feia */
.google-reviews-wrapper::-webkit-scrollbar {
    display: none;
}
.google-reviews-wrapper {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

/* Define o tamanho de cada card de imagem */
.img-card-depoimento {
    flex: 0 0 calc(33.333% - 14px) !important; 
    min-width: 280px;
    height: auto;
    object-fit: contain;
    border-radius: 15px; 
}

/* Estilo das Setas Laterais */
.seta-carrossel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #777777; 
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.seta-carrossel.esquerda { left: 10px; }
.seta-carrossel.direita { right: 10px; }

/* Responsividade */
@media (max-width: 992px) {
    .img-card-depoimento { flex: 0 0 calc(50% - 10px) !important; }
}
@media (max-width: 650px) {
    .container-carrossel-depoimentos { padding: 0 45px; }
    .img-card-depoimento { flex: 0 0 100% !important; }
}
