* {
    margin: 0;
    padding: 0;
}
:root {
    --primary-red: #ff1306;
    --primary-yellow: #fec62b;
    --primary-black: #09090b;

    --secondary-red: #e60b00;
}

.btn-ubak {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transition: all 0.4s ease;
}

.btn-ubak:hover,
.btn-ubak:active,
.btn-ubak:focus {
    background-color: var(--secondary-red);
    color: white;
    transform: translateY(-3px);
}

.btn-outline-ubak {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transition: all 0.4s ease;
}
.btn-outline-ubak:hover,
.btn-outline-ubak:active,
.btn-outline-ubak:focus {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    color: white;
    transform: translateY(-3px);
}

.nav-link {
    color: var(--primary-black) !important;
}

.nav-link:hover {
    color: var(--primary-red) !important;
    text-decoration-line: underline !important;
    text-decoration-color: var(--primary-yellow) !important;
    text-decoration-thickness: 4px !important;
    text-underline-offset: 8px; 
    transition: all 0.4s ease;
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/ubak-hero.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-section .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
        background-position: center center;
        min-height: 70vh; 
    }
}

.navbar {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

footer {
    background-color: var(--primary-black);
}

.ratio iframe {
    border: 0;
    background-color: #000;
}

.row.mb-5 {
    margin-bottom: 5rem !important; 
}

.text-ubak {
    color: var(--primary-red);
}


.form-control, .form-select {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.25rem rgba(227, 28, 33, 0.1);
}

.social-btn {
    transition: all .6s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    background-color: #f8f9fa;
    border-color: #E31C21 !important;
}

.sponsor-logo {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.card {
    transition: all .6s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.page-active {
    color: var(--primary-red) !important;
    text-decoration-line: underline !important;
    text-decoration-color: var(--primary-yellow) !important;
    text-decoration-thickness: 4px !important;
    text-underline-offset: 8px; 
}

.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0; /* Evita que el line-height del texto afecte la altura */
}