/*colores*/
.text-azul {
    color: #2F455C;
}

.text-rojo {
    color: #EF6060;
}

.text-blanco {
    color: #FFFFFF;
}

.text-oscuro {
    color: #1F2F3C;
}

.azul {
    background-color: #2F455C;
}

.rojo {
    background-color: #EF6060;
}

.blanco {
    background-color: #FFFFFF;
}

.oscuro {
    background-color: #1F2F3C;
}

.sombra-1 {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.sombra-2 {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.sombra-3 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.sombra-4 {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.sombra-5 {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Ubuntu', sans-serif;
    scroll-behavior: smooth;
}

/*Header*/
header {
    width: 100%;
    height: 120px;
    display: flex;
    color: white;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
}

.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    padding: 10px;
    z-index: 1000;

}


/*bt-outline{
     border: 2px solid
}*/

/*botones*/
button {
    width: 80%;
    height: 50px;
    max-width: 730px;
    border-radius: 25px;
    font-size: 1em;
    background-color: transparent;
    margin: 1em;
    border: none;
    margin-left: 10%;
    margin-right: 10%;
}

/*navbar*/
.nav-barra {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tablinks {
    width: 33%;
    display: flex;
    justify-content: center;
    opacity: 0.5;
}


.tablinks.ativo {
    opacity: 1;
}

.nav-icons {
    width: 40px;

}

.tabcontent.ativo {
    opacity: 1;
    display: flex;
}

.tabcontent {
    display: none;
    padding: 1em;
    margin-top: 130px;
    height: 100%;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* -------------- page Noticias -------------- */

.container-noticia {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.container-noticia a {
    width: 100%;
}

.noticia-destacada {
    width: 100%;
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.50)), url(../imagenes/noticias/destacada-sorteonacional.jpg);
    border-radius: 10px;
    background-size: cover;
    background-position: center;

}

.noticia-destacada>h2 {
    color: #fff;
    font-size: 1em;
    line-height: 1.4em;
    padding: 0 15px 5px 15px;
    font-weight: 400;
}

.noticia-destacada>p {
    color: #fff;
    font-size: 0.9em;
    line-height: 1.2em;
    height: 0.4em;
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    padding: 0 15px 15px 15px;
    font-weight: 100;
}

.mas-noticias {
    width: 100%;
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    margin-bottom: 2.2em;
}

.mas-noticias>hr {
    width: 100%;
    margin: 0 auto;
    align-content: center;
    height: 0.5px;
    background-color: #2F455C;
    border: none;
    opacity: 0.5;
}

.titulo-noticias {
    font-size: 1.2em;
    margin-bottom: 0.8em;
    margin-top: 0.5em;
    line-height: 1.5em;
}

.noticia-vistaprevia {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 120px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.texto-noti-mini {
    display: flex;
    padding: 5px 10px;
    flex-direction: column;
    justify-content: space-around;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    max-width: 50%;
}

.previa-hashtag {
    font-size: 12px;
    color: #EF6060
}

.previa-titulo {
    font-size: 0.9em;
    line-height: 1.4em;
    overflow: hidden;
    white-space: normal;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.previa-fecha {
    font-size: 12px;
}

.foto-mini {
    height: 100%;
    width: 100%;
    background-color: #EF6060;
}

.foto-mini img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

/* Desportes */

#Deportes {
    margin-top: 120px;

}

.content-deporte {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    justify-content: space-around;
    /* align-content: center; */
    /* align-items: center; */
    width: 100%;
    height: 100vh;
    margin-bottom: 50px;
    left: 0;
    top: 70px;
}

/* desportes contenido */

.container-deporte {
    width: 50%;
    max-width: 130px;
    height: 130px;
    margin: 0.3em;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    /* justify-content: space-between; */
}

.container-deporte a {
    width: 100%;
    margin: 0.25rem auto;
    height: 100%;
    margin-bottom: 1em;
}

.deporte-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    border-radius: 0.5rem;
    background-size: cover;
}

.deporte-card img {
    width: 1.8em;
    padding: 0.5em;
}

.deporte-card h2 {
    padding: 0.4em 0;
    font-size: 0.9em;
    color: #FFFFFF;
}

.cd-fem-01 {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.70)), url(../imagenes/deportes/dep-fem-futsal.jpg);
    background-position: center;
}

.cd-fem-02 {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.70)), url(../imagenes/deportes/dep-fem-volley.jpg);
    background-position: center;
}

.cd-fem-03 {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.70)), url(../imagenes/deportes/dep-fem-natacion.jpg);
    background-position: center;
}

.cd-fem-04 {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.70)), url(../imagenes/deportes/dep-fem-handball.jpg);
    background-position: center;
}

.cd-mas-01 {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.70)), url(../imagenes/deportes/dep-masc-futsal.jpg);
    background-position: center;
}

.cd-mas-02 {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.70)), url(../imagenes/deportes/dep-masc-volley.jpg);
    background-position: center;
}

.cd-mas-03 {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.70)), url(../imagenes/deportes/dep-masc-natacion.jpg);
    background-position: center;
}

.cd-mas-04 {
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.70)), url(../imagenes/deportes/dep-masc-handball.jpg);
    background-position: center;
}



/* Tab comunidad */

.evento-destacado {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    align-items: center;
    justify-content: flex-end;
    padding: 0.3em;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.30),
            rgba(0, 0, 0, 0.70)), url(../imagenes/eventos/evento-club.jpg);
    background-position: center;
    border-radius: 15px;
}

.evento-destacado button {
    width: 120px;
    color: #fff;
    height: 35px;
    font-size: 0.8em;
}

.evento-destacado p {
    color: #FFFFFF;
    font-size: 1em;
}

.content-eventos {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    margin-bottom: 100px;
}

.content-eventos>hr {
    width: 100%;
    margin: 0 auto;
    align-content: center;
    height: 0.5px;
    background-color: #2F455C;
    /* border: none; */
    opacity: 0.5;
}

.titulo-eventos {
    font-size: 1.2em;
    margin-bottom: 0.8em;
    margin-top: 0.5em;
    line-height: 1.5em;
}

.evento-vistaprevia {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    height: 140px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.texto-evento-mini {
    display: flex;
    padding: 5px 10px;
    flex-direction: column;
    justify-content: space-around;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    max-width: 100%;
}

.evento-vistaprevia .previa-hashtag {
    font-size: 0.7em;
    color: #fff;
    background-color: #EF6060;
    padding: 0.3em;
    width: 55%;
    text-align: center;
    border-radius: 10px;
}


.previa-fecha {
    font-size: 12px;
    display: flex;
    align-content: center;
    align-items: center;
}

.previa-fecha img {
    width: 1.2em;
}

.evento-vistaprevia .foto-mini {
    height: 100%;
    width: 50%;
    background-color: #EF6060;
}

.evento-vistaprevia .foto-mini img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

/* Noticia  */
.nav-noticia {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50px;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.50),
            rgba(0, 0, 0, 0));
    display: flex;
    justify-content: space-between;
    background-position: center;
}

.noticia-volver {
    display: flex;
    align-content: center;
    align-items: center;
    color: white;
    font-size: 1em;
}

.noticia-volver img,
.nav-noticia>img {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.5em;
}

.noticia-header {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    color: white;
}

.noticia-fecha {
    font-size: 15px;
    padding: 0 1.6em;
}

.noticia-titulo {
    font-size: 22px;
    padding: 0.2em 1.2em 0.5em;
    line-height: 28px;
}

.noticia-contenido {
    padding: 1.2em;
}

.noticia-subtitulo {
    font-weight: bold;
    margin-bottom: 1em;
    line-height: 1.3em;
}

.noticia-texto p {
    margin-bottom: 1em;
    line-height: 1.5em;
}

/* imagens de las noticias
background-image: linear-gradient(to bottom,
rgba(0, 0, 0, 0), rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.70)), url(../imagenes/fotonoticia1.png);} */

/* info de eventos */

.nav-evento {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.50),
            rgba(0, 0, 0, 0));

}

.evento-volver {
    display: flex;
    align-content: center;
    align-items: center;
    color: white;
    font-size: 1em;
}

.evento-volver img,
.nav-evento>img {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.5em;
}

.evento-header {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    color: white;
}

.evento-contenido {
    padding: 1.2em;
}

.evento-info {
    width: 100%;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 1em;
}

.evento-local,
.evento-precio {
    font-size: 15px;
    display: flex;
    align-content: center;
    align-items: center;
}

.evento-local img,
.evento-precio img {
    width: 1.2em;
}

.evento-fecha {
    font-size: 15px;
}

.evento-titulo {
    font-size: 22px;
    line-height: 28px;
}

.evento-texto p {
    margin-bottom: 1em;
    line-height: 1.5em;
}


.evento-action button a {
    color: #fff;

}

/* FORMULARIOS */



.form-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    background-image: linear-gradient(to bottom, rgba(30, 50, 60, 0.30), rgba(30, 50, 60, 1)), url(../imagenes/slider/sede-del-club.png);
    background-size: cover;
    background-position: center;
}

.form-container img {
    width: 100px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-around;
}

form input {
    width: 70%;
    height: 50px;
    padding: 0 1.5em;
    margin: 0.4em 0;
    border-radius: 30px;
    border: 0;
    font-size: 0.8em;
}

.submit {
    font-size: 1em;
}

/* INFO CLUB */

.info-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #1F2F3C;
    z-index: 99999999999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.activeInfo {
    opacity: 1;
    pointer-events: all;
}

.info-container img {
    width: 100%;
}

.info-container h1 {
    width: 80%;
    color: #FFFFFF;
    font-size: 1.2em;
    text-align: center;
}

.info-container p {
    width: 80%;
    color: #FFFFFF;
    font-size: 0.8em;
    line-height: 1.5em;
}

.info-container button {
    color: #FFFFFF;
    font-size: 0.8em;
    line-height: 1.5em;
}

/* contenido desportes */
.deporte-header {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    color: white;
}


.container-resultado {
    width: 100%;
    max-height: 130vh;
    /* background-color: #1F2F3C; */
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.cd-res-01 {
    background-image:
        url(../imagenes/deportes/dep-masc-futsal.jpg);
    background-position: center;
    background-size: cover;
}

.resultado-destacado {
    background-image: url(../imagenes/deportes/background-estadio.jpeg);
    width: 80%;
    height: 150px;
    display: flex;
    justify-content: space-around;
    padding: 1em;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.club-izq,
.club-der {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 145px;
    width: auto;
    justify-content: space-around;
    width: 33%;

}

.club-izq p,
.club-der p {
    color: white;
    width: 50px;
    text-align: center;
    font-size: 0.8em;
}

.club-izq img,
.club-der img {
    width: 70%;
}

.datos-centrales {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-around;
}

.datos-centrales>h6 {
    background-color: #EF6060;
    padding: 5px;
    border-radius: 9px;
}


.partido-1 {
    display: flex;
    width: 80%;
    align-content: stretch;
    border: none;
    padding: 1em;
}

.equipo-izq,
.equipo-der {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    width: 33%;
}

.equipo-izq img,
.equipo-der img {
    width: 30%;
}

.equipo-izq>h5,
.equipo-der>h5 {
    text-align: left;
}

.proximos-resultados {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    width: 33%;
}

.proximos-resultados h5, .proximos-resultados h4{
    font-size: 0.6em;

}

.proximos-partidos {
    text-align: center;
    width: 100%;
    margin: 20px 0 15px 0;
}



.resultado-contenido {
    width: 90%;
    margin: 15px 5%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-around;
}

.resultado-contenido p {
    font-size: 0.9em;
    line-height: 1.3em;
}

.resultado-contenido button {
    color: #FFFFFF;
}

.tabla-container {
    margin-top: 0px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-around;
    padding: 1em;
    margin:0  10%;
}

.titulo-torneo-apertura {
    margin-top: 150px;
    display: flex;
    justify-content: center;
}

.titulo-torneo-copa {
    display: flex;
    justify-content: center;

}

.fila {
    background-color: white;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    align-items: center;
    justify-content: space-around;
    padding: 1em;
    text-align: center;
    border: 0.01em #fff solid;
}

.fila p{
    text-align: center;
}

.fila-equipo {
    background-color: #d8e2e2;
}

.fila-equipo2 {
    background-color: #c9cece;
}

.nombre-equipo{
    display: flex;
    flex-direction: row;
    width: 40%;
    align-content: center;
    align-items: center;
}

.nombre-equipo img{
    width: 20%;
}

.nombre-equipo p{
 font-size: 0.8em;
 margin:  5px 0 0 5px;
 text-align: left;
}

.index-equipos{
    width: 40%;
    text-align: center;

}

.index-pontos{
    width: 20%;
    text-align: center; 
}