/* SEÇÃO GERAL */
section.content-avaliacoes {
    padding: 55px 0 50px;
    margin-top: 60px;
    background-color: #f9f9f9;
}

section.premios {
    padding: 55px 0 50px;
}

/* CONTAINERS TA e GO */
.carousel-container-ta,
.carousel-container-go {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.premios-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    overflow: hidden;
    height: 300px;
}

.content-avaliacoes .titulo-depoimentos {
    padding-top: 0;
}

.content-avaliacoes .titulo-depoimentos h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 32px;
    color: #4a4a4a;
}

.content-avaliacoes .titulo-depoimentos h2 span {
    font-size: 32px;
    font-weight: 300;
    color: #4a4a4a;
    position: relative;
    z-index: 3;
}

.content-avaliacoes .titulo-depoimentos h2 b {
    font-size: 43px;
    font-weight: 700;
    color: #1a4c82;
    display: block;
    position: relative;
    z-index: 3;
}

.premios-container h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 32px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.container-premios-images {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
}

.container-premios-images.slick-slider {
    background: #fff;
}

.container-premios-images img {
    width: 100px;
}

/*
   ESQ + DIR lado a lado
*/
.carousel-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.carousel-content .link-ver-todos {
    margin-top: 20px;
    height: 30px;
    line-height: 30px;
}

/* BLOCO ESQUERDA: resumo TripAdvisor */
.tripadvisor-resumo, .google-m-n-resumo {
    flex: 0 0 270px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    /* Ajuste se quiser centralizar a altura do card etc. */
}

.tripadvisor-resumo h2, .google-m-n-resumo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tripadvisor-rating, .star-rating-left {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.tripadvisor-rating .bubble {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ddd;
}

/* ... Demais estilos do “card” TripAdvisor */
.tripadvisor-resumo p, .google-m-n-resumo p {
    font-size: 1.7rem;
    color: #555;
}

.tripadvisor-logo, .google-m-n-logo {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.tripadvisor-logo img, .google-m-n-logo img {
    max-width: 100px;
}

/* DIREITA: carrossel em si */
.carousel-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* A “trilha” do carrossel, com gap p/ separar itens */
.carousel {
    display: flex;
    /* Defina seu gap (16px ~ 1rem) */
    gap: 1rem;
    transition: transform 0.4s ease-in-out;
}

/* Cada item não terá margin, pois usaremos gap */
.carousel-item {
    /* Remova flex-basis ou margin do CSS,
       pois estamos definindo via JS: item.style.width = itemWidth + "px"
    */
    box-sizing: border-box;
    background-color: #fafafa;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
}

/* Conteúdo do item */
.carousel-item h3 {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    color: #333;
    font-size: 16px;
}

.carousel-item span,
.carousel-item p {
    display: block;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    font-size: 14px;
}

.carousel-item span.data-avaliacao {
    font-size: 11px;
}

/* BOLINHAS DO AVALIACAO (nota) */
.bubble-rating, .star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.bubble {
    width: 16px;
    height: 16px;
    background-color: #ddd;
    border-radius: 50%;
}

.bubble.filled {
    background-color: #00af87;
}

/* BOTÕES DE NAVEGAÇÃO */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    z-index: 2;
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

.nav-btn:hover {
    color: #777;
}

/* SEPARAÇÃO EXTRA ENTRE OS DOIS CARROSÉIS */
.carousel-container-go {
    margin-top: 2rem;
}

span.star {
    color: #ddd;
}

/* Estrelas no carrossel */
.star-rating .star {
    font-size: 15px;
}

.star.filled {
    color: #ffb400; /* estrela preenchida (dourada) */
}

.slick-dots li button:before {
    color: #6cc65d !important;
}

.container-premios-images .slick-dots li button:before {
    font-size: 50px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    content: '•';
    text-align: center;
    opacity: .75;
    color: #454545;
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RESPONSIVIDADE (exemplo) */
@media (max-width: 768px) {
    .carousel-content {
        flex-direction: column;
        align-items: center;
    }

    .tripadvisor-resumo, .google-m-n-resumo {
        width: 100%;
        margin-bottom: 1rem;
        flex: 0 0 140px;
    }

    /* Carrossel com 1 item por vez em telas pequenas */
    .carousel {
        gap: 1rem;
    }

    /* O JS ainda atribui .width em px, mas terá só 1 item visível */
    /* Caso queira recalcular no resize, é possível, mas não obrigatório. */
    .container-premios-images {
        flex-direction: column;
        align-items: center;
    }

    .container-premios-images img {
        width: 150px;
        margin: 0 auto;
    }

    .carousel-wrapper {
        width: 100%;
    }

    .premios-container {
        height: 360px;
    }
}
