/* ==================================================
   BRAND COLORS – VIANA & VIANA
================================================== */

:root {
        --brand-primary: #e5b525;
        --brand-primary-dark: #cfa31e;
        --brand-dark: #000000;
        --brand-dark-soft: #1f1f1f;
        --brand-gray: #f6f6f6;
        --brand-gray-light: #fffaf0;
        --brand-text-muted: #6c757d;
}

/* ==================================================
   UTILITIES
================================================== */

.object-cover {
        object-fit: cover;
}

/* ==================================================
   CAROUSEL (HERO)
================================================== */

#carouselExampleCaptions .carousel-inner,
#carouselExampleCaptions .carousel-item img {
        max-height: 700px;
}

#carouselExampleCaptions .carousel-item img {
        width: 100%;
        object-fit: cover;
        object-position: center;
}

/* ==================================================
   CARDS – BASE
================================================== */

.trust-card,
.testimonial-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ==================================================
   TRUST SECTION
================================================== */

.trust-card {
        background: linear-gradient(135deg,
                        var(--brand-primary),
                        var(--brand-primary-dark));
        color: var(--brand-dark);
}

.trust-list {
        list-style: none;
        padding: 0;
        margin: 0;
}

.trust-list li {
        position: relative;
        padding-left: 1.75rem;
        margin-bottom: 0.75rem;
}

.trust-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--brand-primary);
        font-weight: bold;
}

/* ==================================================
   TESTIMONIALS
================================================== */

.testimonials-wrapper {
        background-color: var(--brand-gray);
}

.testimonials-inner {
        padding: 4rem 12rem;
}

.testimonial-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 1.75rem;
        height: 100%;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover,
.trust-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card.active {
        background: var(--brand-primary);
        color: var(--brand-dark);
}

.testimonial-card.active:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Alternância visual */
.testimonial-card.soft {
        background-color: rgba(229, 181, 37, 0.12);
        border: 1px solid rgba(229, 181, 37, 0.35);
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
        background-color: var(--brand-dark-soft);
        color: #e0e0e0;
}

.footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 3rem;
}

.footer-social .social-icon {
        width: 36px;
        height: 36px;
        background-color: var(--brand-primary);
        color: var(--brand-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.25s ease, transform 0.25s ease;
}

.footer-social .social-icon:hover {
        background-color: var(--brand-primary-dark);
        transform: translateY(-2px);
}