body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F4F4F4;
    color: #333;
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.banner-container {
    overflow: hidden;
    margin-top: 40px;
    /* Permite rolagem horizontal */
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
}

.banner-wrapper {
    display: flex;
    gap: 24px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    padding-bottom: 12px;
}

.banner-wrapper::-webkit-scrollbar {
    height: 6px;
}

.banner-wrapper::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.6);
    border-radius: 999px;
}

.banner-slide {
    flex: 0 0 360px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.16);
    display: flex;
    flex-direction: column;
    gap: 18px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.banner-slide:hover {
    transform: translateY(-6px);
}

.testimonial-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    align-self: center;
}

.testimonial-text p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.testimonial-text p:first-of-type {
    font-size: 0.98rem;
}

.author {
    font-weight: 600;
    color: #0f172a;
}

.company {
    color: #1d4ed8;
    font-size: 0.9rem;
}

.testimonial-link {
    align-self: flex-start;
    font-weight: 600;
    color: #0ea5e9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.testimonial-link::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
}

.testimonial-link:hover {
    color: #2563eb;
}

.testimonial__header {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial__header p {
    color: #475569;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .banner-wrapper {
        gap: 20px;
    }

    .banner-slide {
        flex: 0 0 85%;
    }
}