/* ===== HERO BANNER SECTION ===== */
.banner-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(to bottom, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%),
        url('/uploads/images/banners/banner_prinicpal.jpg') center center / cover no-repeat;
    overflow: hidden;
    padding: 60px 20px 40px;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/uploads/images/banners/banner_prinicpal.jpg') center center / cover no-repeat;
    filter: grayscale(100%);
    z-index: 0;
}

.banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.banner-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--panel-3);
    opacity: 0.95;
    z-index: 1;
}

.banner-text-wrapper {
    position: relative;
    text-align: center;
    z-index: 2;
}

.banner-actions{
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.banner-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-logo {
    width: 340px;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 60px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--txt-2);
    margin-bottom: 16px;
    line-height: 1.2;
}

.title-highlight {
    color: var(--accent);
}

.banner-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    display: none;
}

.floating-element {
    position: absolute;
    background: var(--accent);
    opacity: 0.05;
    border-radius: 50%;
    display: none;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

/* ===== TABLET (768px+) ===== */
@media (min-width: 768px) {
    .banner-section {
        min-height: 600px;
        padding: 80px 40px 50px;
    }

    .banner-logo {
        width: 340px;
    }

    .banner-title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .banner-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    .banner-section {
        min-height: 650px;
    }

    .banner-logo {
        width: 340px;
    }

    .banner-title {
        font-size: 56px;
    }

    .banner-subtitle {
        font-size: 20px;
    }
}