/* =============================================
   HERO BANNER - Full Width Image
   ============================================= */

.hero-banner {
    width: 100%;
    background-color: var(--color-black);
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slider-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
    border-radius: 4px;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dots .dot.active, .slider-dots .dot:hover {
    background-color: var(--color-gold-primary);
}

.hero-banner-link {
    display: block;
    width: 100%;
    transition: opacity 0.3s;
}

.hero-banner-link:hover {
    opacity: 0.95;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsividade extra para os banners no mobile */
@media (max-width: 768px) {
    /* Removido aspect-ratio para usar tamanho original */
}

@media (max-width: 480px) {
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .slider-dots {
        bottom: 8px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
}
}

/* =============================================
   BENEFITS BAR
   ============================================= */

.benefits-bar {
    background-color: var(--color-black);
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    flex: 1;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background-color 0.3s;
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item:hover {
    background-color: rgba(201, 168, 76, 0.06);
}

.benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold-primary);
}

.benefit-icon svg {
    width: 16px;
    height: 16px;
}

.benefit-item p {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 0.5px;
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;
    }

    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 0.8rem 1rem;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}
