.Main_torneos{
    background-color: #0a0a0a; 
    color: #ffffff;
    padding: 50px 0;
    background-image: radial-gradient(#262626 1px, transparent 1px);
    background-size: 24px 24px;
}

.Main_torneos h1{
    font-size: 36px;
    margin-bottom: 1%;

}
.Main_torneos p{
    font-size: 19px;

}

.contenedor_texto{
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 3;

}

.contenedor_torneos{
    margin-top: 2%;
    margin-bottom: 2%;

}

.contenedor_torneos img{
    width: 100%;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    
}

.Articulo_Torneo{
    width: 380px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 28px;
    transition: all 0.5s linear;
    box-shadow: 0px 0px 10px var(--AZUL);
    display: flex;
    flex-direction: column;
    height: 100%;
    
}

.Articulo_Torneo:hover{
    scale: 1.04;
    box-shadow: 0px 0px 10px var(--NARANJA);
    

}

.Articulo_Torneo figure{
    position: relative;
    border-radius: 10px;
    
}

.estatus{
    background-color: greenyellow;
    display: inline-block;
    padding: 0px 6px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 4%;
    left: 2%;
    z-index: 3;
    line-height: 15px;
}
.estatus_no{
    background-color: red;
    display: inline-block;
    padding: 0px 6px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 6%;
    left: 2%;
    z-index: 3;
    line-height: 15px;
}

.informacion{
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: space-between;
    flex-grow: 1;
}

.informacion i{
    color: var(--NARANJA);
}

.informacion h3{
    color: var(--AZUL);
     font-size: 18px;
}

.informacion_fila{
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    text-decoration: none;
    color: black;
}


.btnInformacion{
    text-align: left;
    text-decoration: none;
    color: black;
    display: inline-block;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: border-color 0.5s linear;
    padding-right: 10px;
}
.btnInformacion:hover{
    border-color: var(--AZUL);

}

.btnAzul{
    display: inline-block;
    text-decoration: none;
    background-color: var(--AZUL);
    color: white;
    padding: 0px 10px;
    border-radius: 10px;
    transition: all 0.3s linear;
}
.btnAzul:hover{
    background-color: var(--NARANJA);
}