* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1A1A1A;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
}

.header-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1A1A1A;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.menu-navegacion a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.menu-navegacion a.activo, 
.menu-navegacion a:hover {
    color: #FF5722;
}

.btn-donar {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background-color: #FF5722;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-donar:hover {
    transform: scale(1.05);
}

.hero-seccion {
    background-image: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.8)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-contenido {
    max-width: 800px;
}

.hero-contenido h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-contenido p {
    font-size: 18px;
    line-height: 1.6;
    color: #F5F5F5;
    margin-bottom: 35px;
}

.btn-conoce {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background-color: #FF5722;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-conoce:hover {
    transform: scale(1.05);
}

.filosofia-seccion {
    background-color: #FFFFFF;
    color: #1A1A1A;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.filosofia-contenedor {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filosofia-header {
    text-align: center;
    max-width: 850px;
    margin-bottom: 60px;
}

.filosofia-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: #FF5722;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.filosofia-header .filosofia-bajada {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.ejes-grilla {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin-bottom: 60px;
}

.eje-columna {
    flex: 1;
    text-align: center;
}

.eje-columna h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.eje-columna p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.banner-naranja {
    background-color: #FF5722;
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.logo-calado {
    height: 60px;
    width: auto;
    display: block;
}
.torneos-seccion {
    background-color: #F5F5F5;
    color: #1A1A1A;
    padding: 80px 40px;
    text-align: center;
}
.titulo-seccion {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #FF5722; 
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.torneos-grilla {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.torneo-tarjeta {
    flex: 1;
    background-color: #FFFFFF;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-left: 5px solid #FF5722; 
}
.torneo-tarjeta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #1A1A1A;
    margin-bottom: 5px;
}
.tag-inclusion {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #FF5722;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.torneo-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

.footer-principal {
    background-color: #1A1A1A; 
    color: #FFFFFF;
    padding: 60px 40px 20px 40px;
    font-family: 'Montserrat', sans-serif;
}

.footer-contenedor {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid #333333;
    padding-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #FF5722;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #CCCCCC;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #FF5722;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo span {
    color: #FFFFFF;
}

.footer-redes a {
    color: #FFFFFF;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-redes a:hover {
    color: #FF5722;
}

.footer-derechos {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #666666;
}

.nosotros-intro {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.nosotros-contenedor {
    max-width: 800px;
    text-align: center;
}

.nosotros-contenedor h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: #FF5722;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bajada-nosotros {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #FFFFFF;
}


.direccion-seccion {
    background-color: #222222; 
    padding: 60px 40px;
    display: flex;
    justify-content: center;
}

.direccion-contenedor {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    width: 100%;
}

.foto-director img {
    width: 150px;
    height: 150px;
    border-radius: 50%; 
    object-fit: cover;
    border: 3px solid #FF5722;
}

.frase-director h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #FF5722;
    margin-bottom: 10px;
}

.frase-director blockquote {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.frase-director cite {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #CCCCCC;
}



.reglas-seccion {
    background-color: #FFFFFF; 
    padding: 90px 20px;
    text-align: center;
}

.titulo-reglas {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: #FF5722;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.reglas-bloques-contenedor {
    max-width: 1100px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column; 
    gap: 20px; 
}

.regla-fila {
    background-color: #F0F0F0; 
    padding: 30px 40px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    text-align: left;
    transition: transform 0.2s ease, background-color 0.2s ease;
}


.regla-fila:hover {
    background-color: #E5E5E5; 
    transform: scale(1.01); 
}

.regla-fila h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #1A1A1A;
    flex: 0 0 300px; 
    letter-spacing: 0.5px;
}

.regla-fila p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    flex: 1; 
}

.avatar-placeholder {
    font-size: 40px;
    margin-bottom: 15px;
}

.miembro-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.avatar-contenedor {
    width: 130px;          
    height: 130px;         
    margin: 0 auto 20px auto; 
    border-radius: 50%;    
    overflow: hidden;     
    border: 3px solid #FF5722; 
}

.avatar-contenedor img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
    display: block;
}


.torneos-intro {
    background-color: #1A1A1A; 
    color: #FFFFFF;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.torneos-contenedor-titular {
    max-width: 800px;
    text-align: center;
}

.torneos-contenedor-titular h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    color: #FF5722; 
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.bajada-torneos {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #FFFFFF;
}


.torneos-detalle-seccion {
    background-color: #FFFFFF; 
    padding: 90px 20px;
    text-align: center;
}

.torneos-bloques-contenedor {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px; 
}

.torneo-fila {
    background-color: #F0F0F0; 
    padding: 35px 40px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    text-align: left;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.torneo-fila:hover {
    background-color: #E5E5E5; 
    transform: scale(1.01);
}

.torneo-fila-titulo {
    flex: 0 0 350px; 
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.torneo-fila h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #1A1A1A;
    letter-spacing: 0.5px;
}

.tag-torneo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #FF5722;
    letter-spacing: 1px;
}

.torneo-fila p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #444444;
    flex: 1; 
}

.torneos-jugados-seccion {
    background-color: #1A1A1A; 
    padding: 80px 40px;
    text-align: center;
    border-top: 1px solid #333333;
}

.subtitulo-seccion {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.bajada-galeria {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 50px;
}


.galeria-grilla {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.galeria-item {
    flex: 1;
    background-color: #222222; 
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-8px);
}

.imagen-fixture {
    width: 100%;
    height: 250px; 
    overflow: hidden;
    background-color: #111111;
}

.imagen-fixture img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

.galeria-info {
    padding: 20px;
    text-align: left;
    border-top: 3px solid #FF5722; 
}

.galeria-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #FF5722;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.galeria-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}


.menu-check-input,
.hamburguesa-icono {
    display: none;
}


@media (max-width: 768px) {
    
    .header-principal {
        padding: 15px 20px; 
        position: relative;
    }

    .hamburguesa-icono {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 20px;
        cursor: pointer;
        z-index: 100; 
    }

    .hamburguesa-icono span {
        width: 100%;
        height: 3px;
        background-color: #FFFFFF; 
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    
    .menu-navegacion {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1A1A1A; 
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        opacity: 0;
        visibility: hidden; 
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }

    .menu-navegacion a {
        margin: 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    
    .btn-donar {
        padding: 8px 20px;
        font-size: 14px;
    }

    
    .menu-check-input:checked ~ .menu-navegacion {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

   
    .menu-check-input:checked ~ .hamburguesa-icono span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-check-input:checked ~ .hamburguesa-icono span:nth-child(2) {
        opacity: 0; 
    }
    .menu-check-input:checked ~ .hamburguesa-icono span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


.logos-torneos-grilla {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 40px; 
    max-width: 1000px;
    margin: 40px auto 0 auto;
    width: 100%;
}

.torneo-logo-item {
    flex: 1;
    max-width: 250px; 
    height: 180px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF; 
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
    transition: transform 0.2s ease;
}


.torneo-logo-item:hover {
    transform: scale(1.03);
}

.logo-torneo-img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
}

.equipo-seccion {
    background-color: #1A1A1A; 
    padding: 80px 40px;
    text-align: center;
}

.equipo-seccion h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 50px;
    letter-spacing: 1px;
}


.equipo-grilla {
    display: flex;
    justify-content: center;
    gap: 50px; 
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}


.miembro-card {
    flex: 1;
    display: flex;
    flex-direction: column; 
    align-items: center;    
    text-align: center;
}


.avatar-contenedor {
    width: 140px;          
    height: 140px;         
    margin-bottom: 20px; 
    border-radius: 50%;    
    overflow: hidden;      
    border: 3px solid #FF5722; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.avatar-contenedor img {
    width: 100%;
    height: 100%;
    object-fit: cover;     
    display: block;
}


.miembro-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.4;
}