/* ── Trolha Reviews — secção Trustpilot ── */

.trolha-reviews {
    padding: 50px 0 55px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.trolha-reviews__wrap {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Header: título + badge ── */

.trolha-reviews__header {
    text-align: center;
    margin-bottom: 35px;
}

.trolha-reviews__title {
    font-size: 26px;
    font-weight: 700;
    color: #1a4f8b;
    margin: 0 0 20px;
    letter-spacing: -0.3px;
}

/* badge Trustpilot (logo + estrelas + score) */
.trolha-reviews__badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    text-decoration: none;
    transition: box-shadow .2s;
}
.trolha-reviews__badge:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    text-decoration: none;
}

.trolha-reviews__tp-logo {
    height: 26px;
    width: auto;
}

.trolha-reviews__score-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trolha-reviews__stars-bar {
    display: inline-flex;
    gap: 1px;
}
.trolha-reviews__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #00b67a;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
/* última estrela meia — simula 4.6 */
.trolha-reviews__star:last-child {
    background: linear-gradient(90deg, #00b67a 60%, #dcdce6 60%);
}

.trolha-reviews__score {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

/* ── Cards do carrossel ── */

.trolha-reviews__carousel {
    position: relative;
}
.trolha-reviews__carousel .owl-stage-outer {
    overflow: hidden;
}
.trolha-reviews__carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.trolha-reviews__card {
    padding: 12px 6px;
}

.trolha-reviews__card-inner {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border: 1px solid #e8ecf0;
    transition: transform .25s, box-shadow .25s;
    aspect-ratio: 507 / 201;
}
.trolha-reviews__card-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.trolha-reviews__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ── Owl nav ── */

.trolha-reviews__carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.trolha-reviews__carousel .owl-nav button {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background: #fff !important;
    color: #1a4f8b !important;
    border: 2px solid #1a4f8b !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    line-height: 36px;
    text-align: center;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.trolha-reviews__carousel .owl-nav button:hover {
    background: #1a4f8b !important;
    color: #fff !important;
}

.trolha-reviews__carousel .owl-nav .owl-prev { margin-left: -10px; }
.trolha-reviews__carousel .owl-nav .owl-next { margin-right: -10px; }

/* ── Owl dots ── */

.trolha-reviews__carousel .owl-dots {
    text-align: center;
    margin-top: 24px;
    position: relative;
    z-index: 2;
    display: flex !important;
    justify-content: center;
    gap: 4px;
}
.trolha-reviews__carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #c8d0d8;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: all .25s;
}
.trolha-reviews__carousel .owl-dot.active span {
    background: #1a4f8b;
    width: 24px;
    border-radius: 4px;
}

/* ── CTA ── */

.trolha-reviews__footer {
    text-align: center;
    margin-top: 30px;
}

.trolha-reviews__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #f5a623;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    letter-spacing: 0.2px;
}
.trolha-reviews__cta:hover {
    background: #e8930c;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.trolha-reviews__cta i {
    font-size: 12px;
    transition: transform .2s;
}
.trolha-reviews__cta:hover i {
    transform: translateX(3px);
}

/* ── Responsive ── */

@media (max-width: 991px) {
    .trolha-reviews__carousel .owl-nav .owl-prev { margin-left: -8px; }
    .trolha-reviews__carousel .owl-nav .owl-next { margin-right: -8px; }
    .trolha-reviews__title { font-size: 22px; }
}

@media (max-width: 575px) {
    .trolha-reviews { padding: 30px 0 35px; }
    .trolha-reviews__wrap { padding: 0 16px; }
    .trolha-reviews__title { font-size: 20px; margin-bottom: 16px; }
    .trolha-reviews__carousel .owl-nav { display: none; }
    .trolha-reviews__card { padding: 8px 0; }
    .trolha-reviews__badge {
        flex-direction: column;
        gap: 8px;
        padding: 10px 16px;
    }
    .trolha-reviews__score-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
    .trolha-reviews__cta {
        padding: 10px 24px;
        font-size: 13px;
    }
}
