.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    margin-top: 0;
    overflow: hidden;
    background-image: url('../images/t4s-mundial-banner-desktop.png');
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero-background {
    display: none;
}

.hero-container {
    width: 100%;
    padding: 0 40px;
    padding-top: 150px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 50%;
    padding-right: 40px;
}

.hero-title {
    font-size: 89px;
    font-weight: 600;
    color: var(--theme-palette-color-8);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

.hero-subtitle {
    font-size: 37px;
    font-weight: 600;
    color: var(--theme-palette-color-8);
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

.hero-arrow {
    margin-top: 20px;
}

.hero-arrow img {
    width: 40px;
    height: auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        min-height: 100vh;
        padding: 0;
        display: block;
        background-image: url('../images/t4s-mundial-banner-mobile.png');
        background-position: bottom center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-container {
        padding: 200px 20px 80px 20px;
        display: block;
    }
    
    .hero-content {
        display: block;
    }
    
    .hero-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 43px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-arrow {
        margin-top: 20px;
        margin-bottom: 0;
    }
    
    .hero-arrow img {
        width: 35px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding-top: 200px;
    }
    
    .hero-title {
        font-size: 43px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding-top: 200px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 43px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-arrow img {
        width: 30px;
    }
}