/******************************
    BANNER
******************************/

.ban-dealer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 14px;
}

.ban-dealer-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    text-align: right;
}

.ban-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

.ban-dealer-row strong {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.ban-dealer-row a {
    font-size: 14px;
    color: inherit;
    text-decoration: none;
    line-height: 1.4;
    transition: opacity 0.2s ease;
}

.ban-dealer-row a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Social */

.ban-social-links {
    display: flex;
    gap: 8px;
}

.ban-social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ban-social-links a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    text-decoration: none;
}

/* Brand Colors */

.ban-social-links .facebook {
    background: #1877F2;
}

.ban-social-links .instagram {
    background: linear-gradient(
        45deg,
        #F58529 0%,
        #FEDA77 25%,
        #DD2A7B 50%,
        #8134AF 75%,
        #515BD4 100%
    );
}

.ban-social-links .tiktok {
    background: #000000;
}

.ban-social-links .google {
    background: #4285F4;
}

@media (max-width: 768px) {
    .ban-dealer-info {
        align-items: center;
    }

    .ban-dealer-row {
        justify-content: center;
        text-align: center;
    }
}

.banner-container {
    background-color: #fff!important;
}


/******************************
    HERO
******************************/
.hero-section {
    background-position: center;
    padding: 20px;
}

@media(min-width: 768px) {
.hero-section {
    min-height: 600px;
    padding-top: 5%;
}
}