
html {
    scroll-behavior: smooth;
}


.hero {
    position: relative;
    width: 100%;
    height: 450px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 30px;
}


.hero img, .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); 
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-content h1 {
    font-size: 28px; 
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}


.hero-content .btn-votar, .hero-content .btn-votar:visited {
    display: inline-block !important;
    background-color: #00d0d4 !important; 
    color: #0b111a !important; 
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    text-decoration: none !important; 
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0, 208, 212, 0.4) !important;
    transition: transform 0.2s ease !important;
}

.hero-content .btn-votar:hover {
    transform: scale(1.05) !important;
}

