.home-container {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.main-logo {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.patrocinio-logo {
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
}

.btn-instagram:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(220, 39, 67, 0.4);
}

.btn-live {
    background: var(--girone-bg);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.btn-live:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-5px) scale(1.05);
}

.live-dot {
    width: 12px;
    height: 12px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.btn-comune {
    background: linear-gradient(45deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
}

.btn-comune:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(30, 60, 114, 0.4);
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-btn { width: 100%; justify-content: center; }
    .main-logo { max-width: 250px; }
    
    .overlay-banner {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

.overlay-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #b8860b, #d4af37, #f3e5ab, #d4af37, #b8860b);
    background-size: 200% auto;
    color: #000;
    text-align: center;
    padding: 1.2rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 -5px 25px rgba(212, 175, 55, 0.6);
    animation: slideUp 0.5s ease-out, goldShine 3s linear infinite;
    transition: transform 0.3s ease, padding 0.3s ease;
    border-top: 2px solid #fff;
}

.overlay-banner:hover {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
    box-shadow: 0 -10px 40px rgba(212, 175, 55, 0.9);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes goldShine {
    to {
        background-position: 200% center;
    }
}

