/*
* FUENTES ICONOS
*/

* {
    font-family: 'Merriweather';
}

body {
    font-size: 14px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.clear {
    clear: both;
}

/*
 * GENERAL
 */

a:hover{
    text-decoration: none;
}


@media(min-width: 768px) {
    .row-eq-height {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-wrap: wrap;
    }
    .row-eq-height > [class*='col-'] {
      display: flex;
      flex-direction: column;
    }
}

/*
* HEADER
*/

header{padding-top: 5px;}

#masthead {
    padding-top: 25px;
}

#logo{
    position: relative;
    padding-left: 80px;
    z-index: 0;
}
#logo > div{
    display: inline-block;
}
#logo h1{
    color: #4e4e4e;
    margin: 0;
    font-size: 33px;
    text-transform: uppercase;    
}
#logo h3{
    color: #acb2bb;
    margin: 0;
    margin-bottom: 10px;
    margin-top: -7px;
}
#logo img.logo-pez{
    width: 150px;
    height: 95px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -95px;
}

#logo img.logo-texto{
    width: 385px;
    height: 50px;
    display: inline-block;
    position: absolute;
    left: 170px;
    top: -65px;
}

#logo:after {
    content: "";
    display: block;
    clear: both;
}

#secundary-menu li a i:hover {
    color: #f29100;
}

/*
* LIGHTBOX
*/
/* IMAGE LIGHTBOX SELECTOR */

#imagelightbox {
    cursor: pointer;
    position: fixed;
    z-index: 10000;
    top: 50%;
    touch-action: none;
    box-shadow: 0 0 3.125em rgba(0, 0, 0, .75); /* 50 */
}

.imagelightbox-open {
    user-select: none;
    overflow: hidden;
}

/* WITH ACTIVITY INDICATION */

.imagelightbox-loading,
.imagelightbox-loading div {
    border-radius: 9999px;
}

.imagelightbox-loading {
    background-color: rgb(128, 128, 128);
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 10003;
    top: 50%;
    left: 50%;
    padding: 0.65em;
    margin: -1.3em 0 0 -1.3em;
    box-shadow: 0 0 2.5em rgba(0, 0, 0, .75); /* 40 */
}

.imagelightbox-loading div {
    width: 1.3em;
    height: 1.3em;
    background-color: #fff;
    animation: imagelightbox-loading .5s ease infinite;
}

@keyframes imagelightbox-loading {
    from {
        opacity: .5;
        transform: scale(.75);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: .5;
        transform: scale(.75);
    }
}

/* WITH OVERLAY */

.imagelightbox-overlay {
    background-color: #fff;
    background-color: rgba(255, 255, 255, .9);
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* WITH "CLOSE" BUTTON */

.imagelightbox-close {
    cursor: pointer;
    width: 2.5em; /* 40 */
    height: 2.5em; /* 40 */
    background-color: #666;
    position: fixed;
    z-index: 10002;
    top: 2.5em; /* 40 */
    right: 2.5em; /* 40 */
    border-radius: 50%;
    transition: color .3s ease;
}

.imagelightbox-close:hover {
    background-color: #111;
}

.imagelightbox-close:before,
.imagelightbox-close:after {
    width: 2px;
    background-color: #fff;
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 50%;
    margin-left: -1px;
}

.imagelightbox-close:before {
    transform: rotate(45deg);
}

.imagelightbox-close:after {
    transform: rotate(-45deg);
}

/* WITH CAPTION */

.imagelightbox-caption {
    text-align: center;
    color: #fff;
    background-color: #666;
    position: fixed;
    z-index: 10001;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.625em; /* 10 */
}

/* WITH NAVIGATION */

.imagelightbox-nav {
    background-color: #444;
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    z-index: 10001;
    left: 50%;
    bottom: 3.75em; /* 60 */
    padding: 0.313em; /* 5 */
    transform: translateX(-50%);
    border-radius: 20px;
}

.imagelightbox-nav a {
    position: relative;
    top: 0.2em;
    width: 1em; /* 20 */
    height: 1em; /* 20 */
    border: 1px solid #fff;
    display: inline-block;
    margin: 0 0.313em; /* 5 */
    border-radius: 50%;
}

.imagelightbox-nav .active {
    background-color: #fff;
}

/* WITH ARROWS */

.imagelightbox-arrow {
    cursor: pointer;
    width: 3.75em; /* 60 */
    height: 7.5em; /* 120 */
    background-color: #444;
    background-color: rgba( 0, 0, 0, .5 );
    vertical-align: middle;
    display: none;
    position: fixed;
    z-index: 10001;
    top: 50%;
    margin-top: -3.75em; /* 60 */
}
.imagelightbox-arrow:hover,
.imagelightbox-arrow:focus {
    background-color: #666;
    background-color: rgba( 0, 0, 0, .75 );
}
.imagelightbox-arrow:active {
    background-color: #111;
}
.imagelightbox-arrow-left {
    left: 2.5em; /* 40 */
}
.imagelightbox-arrow-right {
    right: 2.5em; /* 40 */
}
.imagelightbox-arrow:before {
    width: 0;
    height: 0;
    border: 1em solid transparent;
    content: '';
    display: inline-block;
    margin-bottom: -0.125em; /* 2 */
}
.imagelightbox-arrow-left:before {
    border-left: none;
    border-right-color: #fff;
    margin-left: -0.313em; /* 5 */
}
.imagelightbox-arrow-right:before {
    border-right: none;
    border-left-color: #fff;
    margin-right: -0.313em; /* 5 */
}

.imagelightbox-loading,
.imagelightbox-overlay,
.imagelightbox-close,
.imagelightbox-nav,
.imagelightbox-arrow {
    animation: fade-in .25s linear;
}

@keyframes fade-in {
    from    { opacity: 0; }
    to      { opacity: 1; }
}

@media only screen and (max-width: 41.250em) { /* 660 */
    #container {
        width: 100%;
    }
    .imagelightbox-close {
        top: 1.25em; /* 20 */
        right: 1.25em; /* 20 */
    }
    .imagelightbox-arrow {
        width: 2.5em; /* 40 */
        height: 3.75em; /* 60 */
        margin-top: -1.875em; /* 30 */
    }
    .imagelightbox-arrow-left {
        left: 1.25em; /* 20 */
    }
    .imagelightbox-arrow-right {
        right: 1.25em; /* 20 */
    }
}

@media only screen and (max-width: 20em) { /* 320 */
    .imagelightbox-arrow-left {
        left: 0;
    }
    .imagelightbox-arrow-right {
        right: 0;
    }
}

/*
 * NAV PRIMARIA
 */

#navegacion-primaria {
    background-size: auto;
    padding: 0px 0px;
    height: 56px;
    background-position: -11px 2px;
    margin-top:15px;
}
.menu-menu-primario-container {
    display: inline-block;
    float: right;
}
#primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

#primary-menu li {
    display: inline-block;
    position: relative;
    padding: 20px 10px 12px;
}

#primary-menu li .sub-menu li {
    padding: 5px 5px;
    z-index: 99;
}

#primary-menu > li:before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    float: left;
    margin-top: 7px;
    margin-right: 8px;
    z-index: 99;
}

#primary-menu > li:first-child:before {
    background-color: #0C6CB1;
    z-index: 99;
}

#primary-menu > li:nth-child(2):before {
    background-color: #F5B009;
    z-index: 99;
}

#primary-menu > li:nth-child(3):before {
    background-color: #009741;
    z-index: 99;
}

#primary-menu > li:nth-child(4):before {
    background-color: #E31C20;
    z-index: 99;
}
#primary-menu > li:nth-child(5):before {
    background-color: #0C6CB1;
    z-index: 99;
}

#primary-menu li a {
    color: #434343;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Source Sans Pro';
    text-transform: uppercase;
    padding-right: 3px;
    z-index: 99;
}
#primary-menu li a:hover {
    color: #434343;
    z-index: 99;
}
#primary-menu > .menu-item-has-children a {
    cursor: default;
}

#primary-menu li a:hover {
    color: #434343;
    z-index: 99;
}
#primary-menu .sub-menu{
    display: none;
    position: absolute;
    background: #0C6CB1;
    padding: 10px 10px;
    min-width: 262px;
    left: 0;
    bottom: 0;
    transform: translate(0,100%);
    z-index: 99;
}

#primary-menu li:nth-child(2) .sub-menu {
    background-color: #F5B009;
}
#primary-menu li:nth-child(2) a:hover {
}

#primary-menu li:nth-child(3) .sub-menu {
    background-color: #009741;
}
#primary-menu li:nth-child(3) a:hover {
}

#primary-menu li:nth-child(4) .sub-menu {
    background-color: #E31C20;
}
#primary-menu li:nth-child(4) a:hover {
    background-color: #0C6CB1;
}

#primary-menu li:hover .sub-menu {
    display: block;
}


#primary-menu .sub-menu li {
    display: block;
    margin: 0;
    position: relative;
}

#primary-menu .sub-menu li a {
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    position: relative;
    z-index: 1;
    font-family: 'Roboto';
    color: #fff;
    letter-spacing: 0.05em;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}
#primary-menu .sub-menu li:hover{
    background-color: #00000017;
    color: #fff;
}

#primary-menu .sub-menu li:before {
    background: #fff;
    content: '';
    position: absolute;
    right: -35px;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 0;
    opacity: 0;
}


#fechas-nav {
    display: inline-block;
    color: white;
    font-size: 15px;
    font-weight: 700;
    padding-left: 0px;
    padding-top: 19px;
    letter-spacing: 4px;
}

.buscador {
    float: right;
    display: inline-block;
    height: 57px;
    width: 57px;
    text-align: center;
}

.buscador i {
    line-height: 57px;
    font-size: 27px;
}

/*
 * NAV SECUNDARIA
 */

#navegacion-secundaria{
    margin-bottom: 60px;
    text-align: right;
}

.menu-menu-secundario-container{}

#secundary-menu{
    list-style: none;
    padding: 0;
    margin: 0;
}
#secundary-menu > li{
    display: inline-block;
    position: relative;
    padding: 0 21px 4px;
}
#secundary-menu > li:last-child:before{
    content: '';
    width: 2px;
    background: #acb3bc;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 4px;
}
#secundary-menu > li:first-child:before{
    display: none;
}
#secundary-menu > li.destacado{
    border-bottom: 2px solid #e12c80;

}
#secundary-menu > li.destacado > a{
    color: #e12c80;

}
#secundary-menu > li.destacado:before{
    background: #e12c80;
    display: block;
}
#secundary-menu > li.destacado:before{
    content: '';
    width: 2px;
    background: #e12c80;
    height: 20px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 4px;
}
#secundary-menu > li.destacado:after{
    background: #e12c80;
    display: block;
    content: '';
    width: 2px;
    height: 21px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 4px;
}
#secundary-menu > li.destacado:hover{
    border-bottom: 2px solid white;
}
#secundary-menu > li.destacado:hover:before,#secundary-menu > li.destacado:hover:after{
    display: none;
}
#secundary-menu li a {
    color: #acb2bb;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 400;
}

#secundary-menu li a:hover {
    color: #f5ba2a;
}



.submenu-secundario{
    position: absolute;
    width: auto;
    padding: 0;
    margin: 0;
    min-width: 100px;
    right: 0;
    top: 26px;
    text-align: center;
    border-bottom: 2px solid #acb3bc;
    border-left: 2px solid #acb3bc;
    border-right: 2px solid #acb3bc;
    display: none;
    list-style: none;
    z-index: 200;
    background-color: #fff;
}
.submenu-secundario li{
    display: inline-block;
    padding: 5px 9px 3px;
}
.submenu-secundario.submenu-redes{min-width: 178px;padding-bottom: 4px;}

#secundary-menu li:hover .submenu-secundario{
    display: block;
}

.submenu-secundario.submenu-evento{
    min-width: 600px;
    right: -234px;
}

/*
 * BREADCRUMB
*/

#breadcrumb {
    background-image: url('https://6563d6.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/grafico-taco-color-principal.png');
    background-repeat: repeat-x;
    display: block;
    background-size: 100% 100%;
    width: 100%;
    height: 50px;
    margin: 0;
    margin-top: 2em!important;
}



#breadcrumb .container, #breadcrumb .container .row, #breadcrumb .container .row .col-md-12 {
    height: 49px;
} 

#breadcrumb ul {
    padding: 0;
    display: inline-block;
    height: 50px;
    margin: 0;
}

#breadcrumb ul li {
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    list-style: none;
    float: left;
    line-height: 50px;
    font-family: 'Source Sans Pro';
}

#breadcrumb ul li a {
    color: #fff;
    line-height: 50px;
    font-family: 'Source Sans Pro';
    font-weight: 700;
}

#breadcrumb ul li a:hover {
    color: #f1f1f1;
}

#breadcrumb ul li:after {
    content: '>';
    margin: 0 10px;
}

#breadcrumb ul li:last-child:after {
    content: '';
    margin: 0;
}

/*
 * SLIDE HOME
 */

#slider-home{
    height: 500px;
    background-position: 50%;
    background-size: cover;
    background-color: #d4e2e7;
    position: relative;
}

#slider-principal:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 500px;
    height: 100%;
    background-image: url('https://ebde9c.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/manchas-hero-izquierda.svg');
    z-index: 3;
    background-repeat: no-repeat;
}
@media(max-width: 480px) {
    #slider-principal:after {
        display: none;
    }
}
#slider-principal:before {
    content: '';
    position: absolute;
    right: 0px;
    top: 0;
    width: 310px;
    height: 100%;
    background-image: url('/assets/jadar2025.com/wp-content/themes/juegos2021/img/manchas-hero-derecha.svg');
    z-index: 3;
    background-repeat: no-repeat;
}
@media(max-width: 480px) {
    #slider-principal:before {
        height: 80%;
    }
}

/*
 * SLIDER
 */

.slides {
    margin: 0;
}

#slider-principal {
    height: 500px !important; 
    display: block;
    width: 100%;
    position: relative;
    outline: none;
    /*overflow: hidden;*/
    margin-bottom: 35px;
}

.admin-bar #slider-principal {
    height: 322px;
}

#slider-principal ul{
    list-style: none;
    padding: 0;
}

#slider-principal .contenedor-slide {
    display: table;
    width: 100%;
}

.slide {
    height: 481px;
    background-size: cover;
    background-position: center;
    background-color: grey;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.admin-bar .slide .container, .admin-bar .slide .container .row, .admin-bar .slide .container .row .col-md-12 {
    height: 100%;
}

#slider-principal .slide-contenido {
    width: 100%;
    padding-bottom: 20px;
}

#slider-principal .slide-contenido h2 {
    font-family: 'Merriweather';
    font-size: 70px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 70px;
    padding: 0;
    max-width: 1000px;
    margin-top: 20px;
}

#slider-principal .slide-contenido h4 {
    color: white;
    font-weight: 400;
    font-size: 21px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Source Sans Pro';
}

#slider-principal .slide-contenido .slide-texto{
    color: white;
    font-size: 19px !important;
    max-width: 50%;
    font-family: Roboto;
    margin-top: 10px;
    font-weight: 300;
    text-transform: uppercase;
}

#slider-principal .slide-contenido .diagonales {
    font-size: 70px;
    color: #fff;
    right: 80px;
    top: 20px;
    position: absolute;
}

@media(max-width: 480px) {
    #slider-principal .slide-contenido .diagonales {
        font-size: 60px;
        color: #fff;
        right: 20px;
        top: 20px;
        position: absolute;
    }
}

#slider-principal .slide-contenido > a {
    font-family: 'Roboto';
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 38px;
    padding: 0;
    max-width: 1000px;
    width: 86%;
    position: absolute;
    bottom: 5%;
    left: 7%;
    color: #fff;
}

#slider-principal .slide-contenido > a .diagonales {
    letter-spacing: 4px;
}

#slider-principal .slide-contenido .slide-texto p{
    margin-bottom: 0;
    font-size: 19px !important;
    font-weight: 300;
}
#slider-principal .slide-contenido .slide-texto p del{
    text-decoration: none;
    font-weight: 300;
}
#slider-principal .slide-contenido .btn-slider{
    font-size: 14px;
    color: white;
    display: block;
    margin-top: 15px;
    font-family: Roboto Condensed;
    font-weight: 550;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#slider-principal.slider-home .flex-control-nav{
    bottom: 1px;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    text-align: center;
    list-style: none;
}

#slider-principal .scroll-down {
    position: absolute;
    bottom: 20px;
    left: calc(50% - 16px);
    width: 32px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.79);
    border-radius: 20px;
    text-align: center;
    line-height: 90px;
}

#slider-principal .scroll-down i {
    color: #fff;
}

#slider-principal.slider-home .flex-control-nav{
    display: none;
}
#slider-principal.slider-home .flex-control-nav li{
    display: inline-block;
}
#slider-principal.slider-home .flex-control-nav li a{
    width: 15px;
    height: 15px;

    border-radius: 100%;
    display: block;
    font-size: 0;
    margin: 0 10px;
    border: 2px solid #f7ce0e;
}
#slider-principal.slider-home .flex-control-nav li a.flex-active{
    background: #f7ce0e;
}

.flex-direction-nav {    
    height: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0;
    display: none;
}
.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 50px;
    height: 120px;
    margin: -20px 0 0;
    position: absolute;
    top: calc(50% - 25px);
    z-index: 10;
    overflow: hidden;
    opacity: 1;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8); 
    transition: all 0.3s ease-in-out;
    font-size: 0;
}
.flex-direction-nav a:before {
    content: "\e901";
    font-family: 'icomoon' !important;
    font-size: 49px;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease-in-out;
    transform: rotate(-180deg);
}
.flex-direction-nav a.flex-next:before {
    transform: rotate(-360deg);
    content: "\e901";
}
.flex-direction-nav a:hover:before{
    color: black;
}
.flex-direction-nav .flex-prev {
    left: 10px;
}
.flex-direction-nav .flex-next {
    right: 10px;
    text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1;
}
.flex-direction-nav .flex-disabled {
    opacity: 0!important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1;
}

@media(max-width:992px){
    #slider-principal{
        height: 400px;
    }
    .slide{
        height: 400px;
    }

    #slider-principal .slide-contenido h2{font-size: 39px;line-height: 39px;margin-bottom: 100px;padding: 0;}
}

@media(max-width:768px){
    .slide{
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media(max-width:460px){
    #slider-principal .slide-contenido h2{font-size: 31px;    line-height: 38px;    margin-bottom: 50px;}
}

.slider-principal {
    background-color: #3d3d3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-principal img {
    min-width: 100%;
    min-height: 100%;
}

.slider-home {
    contain: layout style paint;
    will-change: contents;
}

.slider-container {
    aspect-ratio: 16/9;
    max-height: 70vh;
    min-height: 300px;
}



/*
 * MODULO HOME
 */

.modulo-home{
    position: relative;
}

.btn-violeta {
    background-color: #802980;
    color: #fff;
    font-weight: 700;
    font-family: 'Roboto';
    font-size: 15px;
    display: inline-block;
    border: 0;
    width: 112px;
    height: 41px;
    text-align: center;
    line-height: 41px;
    padding: 0;
    position: relative;
    margin-right: -50px;
    margin-top: 30px;
}

.btn-violeta:before {
    content: '';
    background-color: #ed9405;
    width: 145px;
    height: 40px;
    position: absolute;
    top: -5px;
    left: -5px;
    z-index: -1;
}

a.btn-violeta {
    margin-top: 120px;
    text-transform: uppercase;
}

a.btn-violeta:hover {
    color: #fff;
}

/*
 * VOLUNTARIADO
*/

#banner-voluntariado-home .btn-violeta:before {
    width: 120px;
}

#banner-voluntariado-home .btn-violeta {
    width: 120px;
}

#banner-voluntariado-home .cont-banner-voluntariado-home {
    display: inline-block;
    position: relative;
}

#banner-voluntariado-home .cont-banner-voluntariado-home h2 {
    display: inline-block;
    width: auto;
    padding: 0px 20px;
    background-color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translate(0,-50%);
    font-weight: 300;
    font-size: 55px;
    margin: 0;
}

#banner-voluntariado-home .forma-voluntariado-home-uno {
    display: inline-block;
    width: 118px;
    height: 60px;
    background-image: url('https://478e17.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/forma-seis.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 15px;
    top: -35px;
}

#banner-voluntariado-home .forma-voluntariado-home-dos {
    display: inline-block;
    width: 138px;
    height: 68px;
    background-image: url('https://f01526.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/forma-uno.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    right: 40px;
    bottom: -35px;
    transform: rotate(180deg);
}

#banner-voluntariado-home a.btn-violeta {
    margin-top: 90px;
}

.cont-banner-page, .cont-banner-disciplina {
    position: relative;
    height: 410px;
    background-position: bottom;
    background-size: cover;
}

.cont-banner-disciplina {
    height: 250px;
    width: 500px;
    border-bottom-left-radius: 250px;
    border-bottom-right-radius: 250px;
    overflow: hidden;
}

@media(max-width:768px){
    .cont-banner-disciplina{
        height: 150px;
    }
}

.cont-banner-page .forma-fondo, .cont-banner-disciplina .forma-fondo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 105px;
    background-image: url('https://40811a.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/ondas-fotos-principales.png');
    background-position: center;
    background-size: 101% 100%;
}

.cont-banner-page img, .cont-banner-disciplina img {
    width: 100%;
    max-height: 410px;
}

.cont-banner-page h1, .cont-banner-disciplina h1 {
    font-size: 65px;
    font-weight: 100;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    margin: 0;
    width: 310px;
    line-height: 67px;
    text-transform: uppercase;
    color: #000;
}

@media(max-width:992px){
    .cont-banner-page h1{
        display: none;
    }
}

.header-disciplina {
    width: 100%;
    position: relative;
}

.header-disciplina .container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
}

.header-disciplina .container, .header-disciplina .container .col-md-12 {
    height: 100%;
}

.header-disciplina .text-right h1, .header-disciplina .text-left h1 {
    font-size: 55px;
    padding: 0 10px;
    font-weight: 100;
    position: absolute;
    bottom: 50%;
    transform: translate(0,50%);
    margin: 0;
    width: auto;
    line-height: 80px;
    color: #000;
    width: auto;
    background-color: #fff;
}

.header-disciplina .text-right h1 {
    right: 0;
}

.header-disciplina .text-left h1 {
    left: 0;
}

/*.header-disciplina h1 span {
    font-family: 'Source Sans Pro';
}*/

.disciplinas-template-default .container>div.row:nth-child(2){
	position: relative;
}

.disciplinas-template-default .home-disciplinas div.row:nth-child(2){
	position: static;
}

.disciplinas-template-default .home-disciplinas .container{
	position: relative;
}

.cont-titulo-disciplina {
    padding-top: 50px;
}

.cont-titulo-disciplina h1 {
    margin-top: 0;
    line-height: 39px;
    display: inline-block;
    font-size: 7rem;
    font-weight: 100;
    font-family: 'Source Sans Pro';
    font-style: italic;
    width: 100%;
	margin-bottom: 20px;
}

.cont-titulo-disciplina .cont-titulos span,a{
	font-family: 'Source Sans Pro';
	font-weight: 300;
}
.cont-titulo-disciplina .cont-titulos a{
	color: #FF005C;
}


.cont-titulo-disciplina .cont-titulos a{
	font-family: 'Source Sans Pro';
	font-size: 20px;
}

.header-disciplina .text-right h3, .header-disciplina .text-left h3 {
    font-size: 20px;
    font-weight: 300;
    position: absolute;
    bottom: calc(50% + 35px);
    transform: translate(0,-50%);
    margin: 0;
    width: auto;
    line-height: 30px;
    color: #000;
    background-color: #fff;
    font-family: 'Source Sans Pro';
    text-transform: uppercase;
}

.header-disciplina .text-right h3 {
    right: 0;
    margin-right: 60px;
}

.header-disciplina .text-left h3 {
    left: 0;
    margin-left: 60px;
}

.header-disciplina h3:after {
    content: '//';
    margin-left: 10px;
    letter-spacing: 4px;
}

.cont-banner-disciplina h1 {
}

.pull-left .cont-banner-page h1, .pull-left .cont-banner-disciplina h1 {
    right: -200px;
}

.pull-right .cont-banner-page h1, .pull-right .cont-disciplina h1 {
    left: -200px;
    font-size: 65px;
}

.cont-banner-page h1 span, .cont-banner-disciplina h1 span {
    font-family: 'Source Sans Pro';
    background-color: white;
    padding: 0 15px;
}

.nav-scroll-page {
    text-align: right;
    width: 100%;
    display: inline-block;
    height: 55px;
    padding: 0;
    margin-top: 50px;
    position: relative;
}

.nav-scroll-page:before {
    background-image: url('https://c729d4.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/logo-juegos-2021.svg');
    background-repeat: no-repeat;
    width: 140px;
    height: 250px;
    content: '';
    position: absolute;
    top: -15px;
    right: 110px;
    display: inline-block;
    z-index: 1;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

@media(max-width:992px){

    .header-disciplina .container{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
    }
    .header-disciplina .text-left h3{
        /* position: relative; */
        bottom: 0;
        top: 15px;
        left: 0;
        transform: none;
        width: 200px;
        line-height: 22px;
        height: 33px;
        display: inline-block;
    }
    .header-disciplina h1 span{
        font-size: 40px;
        line-height: 51px;
        display: block;
    }

    .nav-scroll-page:before {
        display: none;
    }

    .header-disciplina .text-left h1{
        left: 0;
        right: 0;
        position: relative;
        top: 35px;
        bottom: initial;
        text-align: center;
        display: inline-block;
    }


    #disciplinas.bloque-page h2{
        text-align: center;
    } 

    #disciplinas .item-deporte-escenario{
        width: 25%;
    }
}

@media(max-width:768px){
    #disciplinas .item-deporte-escenario {
        width: 30%;
    }
    #disciplinas{
        /* padding-top: 0; */
    }
    
}
@media(max-width:480px){
    #disciplinas .item-deporte-escenario {
        width: 50%;
    }
}

.no-pez:before {
    background-image: none !important;
}

.nav-scroll-page ul {
    width: auto;
    display: inline-block;
    height: 55px;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    z-index: 10;
    background-color: white;
}

.nav-scroll-page ul li {
    display: inline-block;
    float: left;
    height: 30px;
    padding-top: 15px;
    margin-right: 20px;
}

.nav-scroll-page ul li:last-child {
    margin-right: 0;
}

.nav-scroll-page ul li a {
    font-size: 16px;
    color: #acb2bb;
    text-transform: uppercase;
    display: inline;
}

.nav-scroll-page ul li a:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #e02c80;
    transition: width .3s;
    margin-top: 3px;
}

.nav-scroll-page ul li a:hover::after {
    width: 100%;
}

.bloque-page {
    padding: 150px 0;
}
@media(max-width:768px){
    .bloque-page {
        padding: 150px 0;
    }

    
}

.bloque-page h2 {
    font-size: 3.2em;
    font-weight: 700;
    font-family: 'Source Sans Pro';
    margin: 0 0 5px 0;
    padding: 20px 0;
    line-height: 1.2em;
}

.bloque-page h3 {
    font-size: 30px;
    font-weight: 100;
    font-family: 'Source Sans Pro';
    margin: 0 0 5px 0;
    padding: 8px 0;
    line-height: 30px;
}

.bloque-page h5 {
    font-weight: 100;
    font-size: 18px;
    font-family: 'Source Sans Pro';
    margin-bottom: 0;
    margin-top: 12px;
    line-height: 30px;
    border-bottom: 2px solid #000;
    display: inline-block;
    width: auto;
    padding-left: 0;
    padding-right: 3px;
}

.bloque-page p {
    font-family: 'Merriweather';
    font-weight: 300;
    font-size: 15px;
    line-height: 26px;
} 

.bloque-page p.p-back-blanco {
    display: inline-block;
    margin-bottom: 10px;
    line-height: 21px;
}

.bloque-page .lista-bloque li {
    line-height: 30px;
    font-size: 17px;
}

.bloque-page .padding-left {
    margin-left: 50px;
}

.bloque-page .padding-top {
    margin-top: 130px;
}

.bloque-page.padding-bottom {
    /*margin-bottom: 100px;*/
}

/*.bloque-page .circulo:before {
    content: '';
    border: 5px solid #d7cebd;
    border-radius: 50%;
    display: inline-block;
    width: 165px;
    height: 165px;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    position: absolute;
    z-index: -1;
}*/

.bloque-page .circulo {
    /*font-size: 85px;*/
    font-family: 'Source Sans Pro';
    font-weight: 100;
    color: #000;
    /*line-height: 150px;*/
    text-align: center;
    /*height: 165px;*/
    position: relative;
    display: inline-block;
    width: auto;
    transition: all 200ms;
}

.bloque-page .circulo:hover {
    font-weight: 700;
}

.bloque-page .circulo .forma1 {
    content: '';
    background-image: url('https://f01526.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/forma-uno.svg');
    background-size: 100% 100%;
    z-index: -20;
    position: absolute;
    background-repeat: no-repeat;
    display: inline-block;
    height: 75px;
    width: 145px;
    top: 48%;
    left: -100px;
}

.bloque-page .circulo .forma2 {
    content: '';
    background-image: url('https://3c457c.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/forma-dos.svg');
    background-size: 100% 100%;
    z-index: -20;
    position: absolute;
    background-repeat: no-repeat;
    display: inline-block;
    height: 25px;
    width: 103px;
    top: 32px;
    right: -85px;
}

.bloque-page .circulo .forma3 {
    content: '';
    background-image: url('https://4fb191.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/forma-tres.svg');
    background-size: 100% 100%;
    z-index: -20;
    position: absolute;
    background-repeat: no-repeat;
    display: inline-block;
    height: 110px;
    width: 110px;
    top: 48%;
    left: -75px;
}

.bloque-page .circulo .forma4 {
    content: '';
    background-image: url('https://547652.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/forma-cuatro.svg');
    background-size: 100% 100%;
    z-index: -20;
    position: absolute;
    background-repeat: no-repeat;
    display: inline-block;
    height: 110px;
    width: 110px;
    top: 20px;
    left: -85px;
}

.bloque-page .h4-circulo {
    font-size: 43px;
    font-weight: 100;
    font-family: 'Source Sans Pro';
    margin-top: 10px;
}

.bloque-page .circulo .forma5 {
    content: '';
    background-image: url('https://c8a287.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/forma-cinco.svg');
    background-size: 100% 100%;
    z-index: -20;
    position: absolute;
    background-repeat: no-repeat;
    display: inline-block;
    height: 60px;
    width: 115px;
    top: 50px;
    right: -110px;
}

.bloque-page .listado-desplegable {
    padding: 0;
    display: inline-block;
    padding-left: 20px;
    position: relative;
    z-index: 10;
}

.bloque-page .listado-desplegable li {
    display: inline-block;
    list-style: none;
}

.bloque-page .listado-desplegable .desplegable-inactivo .contenido-desplegable {
    max-height: 0px;
    overflow: hidden;
    margin-bottom: 0;
}

.bloque-page .listado-desplegable .desplegable-inactivo h4:before {
    content: '+';
}

.bloque-page .listado-desplegable .desplegable-activo .contenido-desplegable {
    max-height: 1000px;
    margin-bottom: 60px;
}

.bloque-page .listado-desplegable .desplegable-activo h4:before {
    content: '-';
}

.bloque-page .listado-desplegable li h4 {
    font-size: 22px;
    font-weight: 300;
    font-family: 'Roboto';
    margin: 0 0 5px 0;
    background-color: #fff;
    padding: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 300ms;
}

.bloque-page .listado-desplegable li h4:before {
    margin-right: 4px;
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
}

.bloque-page .listado-desplegable li .contenido-desplegable {
    padding-left: 35px;
    transition: all 300ms ease-out;
}

.bloque-page .listado-desplegable li .contenido-desplegable p {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    display: inline;
    margin-bottom: 5px;
    background-color: #fff;
}

.bloque-page .listado-desplegable li .contenido-desplegable h5 {
    font-size: 18px;
    font-weight: 300;
    display: inline-block;
    width: auto;
    background-color: #fff;
    margin-bottom: 0;
}

.bloque-page .listado-desplegable li .contenido-desplegable ul {
    padding: 0;
}

.bloque-page .listado-desplegable li .contenido-desplegable ul li {
    line-height: 28px;
    margin-bottom: 5px;
    display: inline;
    background-color: #fff;
}

.bloque-page .listado-desplegable li .contenido-desplegable ul li:before {
    content: ">";
    margin-right: 3px;
}

.bloque-page .imagen-flotada {
    max-width: 620px;
    position: relative;
    z-index: -1;
}

.bloque-page .form-dis1 {
    margin-bottom: 200px;
}

.bloque-page .form-dis1 h6 {
    font-size: 17px;
    font-weight: 300;
    font-family: 'Roboto';
    color: #000;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 40px;
}

.bloque-page .form-dis1 input, .bloque-page .form-dis1 select, .bloque-page .form-dis1 span, .bloque-page .form-dis1 textarea {
    width: 100%;
    border: 0;
    background-color: transparent;
    border-bottom: 2px solid #000;
    margin-bottom: 10px;
    padding: 5px 0;
    display: inline-block;
    font-size: 13px;
    outline: none;
}

.bloque-page .form-dis1 input:focus,.bloque-page .form-dis1 textarea:focus{
    border-bottom-color: #be2b80 !important;
}

.bloque-page .form-dis1 textarea {
    height: 100px;
}

.bloque-page .form-dis1 select {
    height: 30px;
}

.bloque-page .form-dis1 span {

}

.bloque-page .form-dis1 .cont-radio {
    float: right;
}

.bloque-page .form-dis1 input[type="radio"] {
    width: auto;
    margin-right: 3px;
    margin-bottom: 0;
    line-height: 25px;
}

.bloque-page .form-dis1 .cont-radio label {
    margin-right: 10px;
    line-height: 25px;
}

.bloque-page .form-dis1 .cont-radio label:last-child {
    margin-right: 0;
}

.bloque-page .form-dis1 select {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('https://fd3bad.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/chevrondown.svg');
    background-size: 10px;
    background-position: calc(100% - 10px) 10px;
    background-repeat: no-repeat;
}

.bloque-page .form-dis1 select:-ms-expand {
    display: none;
}

.bloque-page .form-dis1 span  {
    border-bottom: 0;
    margin-bottom: 0;
}

.bloque-page .form-dis1 button.btn-violeta {
    background-color: #802980;
    color: #fff;
    font-weight: 700;
    font-family: 'Roboto';
    font-size: 15px;
    display: inline-block;
    border: 0;
    width: 112px;
    height: 41px;
    text-align: center;
    line-height: 41px;
    padding: 0;
    position: relative;
    float: right;
    margin-right: 0px;
    margin-top: 30px;
}

.bloque-page .form-dis1 button.btn-violeta:before {
    content: '';
    background-color: #ed9405;
    width: 112px;
    height: 41px;
    position: absolute;
    top: -5px;
    left: -5px;
    z-index: -1;
}

.bloque-page .width-100 {
    width: 100%;
}

.bloque-page .latitudes, .bloque-page .bloque-titulo {
    display: inline-block;
    width: auto;
    text-align: left;
    background-image: url('https://d117b9.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/chirimbolo1.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-bottom: 10px;
    margin-top: 100px;
}

.bloque-page .bloque-titulo {
    background-image: none;
    margin-top: 0;
}

.bloque-page .latitudes h3, .bloque-page .bloque-titulo h3 {
    font-size: 38px;
    font-family: 'Source Sans Pro';
    font-weight: 300;
    margin: 0;
}

.bloque-page .latitudes span, .bloque-page .bloque-titulo span {
    font-size: 20px;
    font-weight: 400;
}

.bloque-page .latitudes h3, .bloque-page .latitudes span {
    display: inline-block;
    width: auto;
}

.bloque-page .latitudes .padding1 {
    padding-left: 30px;
}

.bloque-page .latitudes .padding2 {
    padding-left: 60px;
}

.bloque-page .bloque-titulo .padding1 {
    padding-left: 15px;
}

.bloque-page .bloque-titulo .padding2 {
    padding-left: 30px;
}

.bloque-page .bloque-titulo .padding3 {
    padding-left: 45px;
}

.bloque-page .bloque-titulo .padding4 {
    padding-left: 60px;
}

.bloque-page .bloque-titulo .padding5 {
    padding-left: 75px;
}

.bloque-page .bloque-titulo .padding6 {
    padding-left: 90px;
}

.bloque-page .bloque-titulo span {
    margin-bottom: 20px;
    display: inline-block;
}

.bloque-page .bloque-titulo {
    float: left;
    margin-left: 30px;
}

.bloque-page .bloque-titulos h3, .bloque-page .bloque-titulos span {
    display: inline-block;
    width: auto;
}

.bloque-page .bloque-titulo h3 {
    font-size: 30px;
}

.bloque-page .bloque-titulo span {
    font-size: 17px;
}

.ultimas-noticias-side h3, .bloque-page .secciones-side h3 {
    font-size: 26px;
    font-weight: 300;
    font-family: 'Source Sans Pro';
    margin: 15px 0 0 0;
}

.listado-noticias-vertical {
    padding: 0;
    margin-bottom: 40px;
}

.listado-noticias-vertical li {
    list-style: none;
    position: relative;
    margin-bottom: 20px;
}

.listado-noticias-vertical li .col-md-9 {
    position: absolute;
    top: 10px;
    left: 60px;
}

.listado-noticias-vertical li .col-md-9 h3 {
    font-size: 14px;
    font-weight: 300;
    font-family: 'Source Sans Pro';
    background-color: #fff;
    display: inline-block;
    width: 100%;
    padding: 4px 7px;
    padding-right: 0;
    box-sizing: border-box;
    color: #1d2d51;
}

.listado-noticias-vertical li .col-md-9 h3:hover{
    color: #802980;
}

.secciones-side ul {
    padding: 0;
}

.secciones-side ul li {
    list-style: none;
}

.secciones-side ul li a {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Roboto';
    color: #000;
    line-height: 22px;
}

.secciones-side ul li a:before {
    content: '/';
    margin-right: 5px;
}

.secciones-side ul li a:hover {
    color: #802980;
    font-size: 18px;
}

@media(max-width:992px){
    #imagen-monumento,#imagen-playon {display: none;}

    #rosario{
        margin-bottom: 0;
        padding-bottom: 0;
    }

}


/*
 * FOOTER
*/

#footer {
    background: white;
    position: relative;
    z-index: 10;
    padding-top: 55px;
}

#bloque-organizan-sponsors h3 {
    font-family: 'Source Sans Pro';
    font-weight: 100;
    color: #000000;
    font-style: normal;
    margin-bottom: 30px;
    font-size: 35px;
}

#bloque-organizan-sponsors {
    margin-bottom: 60px;
    background: white;
}

#bloque-organizan-sponsors .item-logo img {
    display: inline-block;
}

#bloque-organizan-sponsors .item-logo {
    text-align: center;
}

#bloque-organizan-sponsors .item-logo:before {
    content: "";
    width: 1px;
    height: 1px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    z-index: 0;
    border: 0 solid #d4e2e7;
    border-radius: 50%;
    -webkit-transition: .2s;
    transition: .2s;
}

#bloque-organizan-sponsors .item-logo:hover::before {
    transition: .4s;
    border-width: 17px;
    width: 100px;
    height: 100px;
}

#bloque-organizan-sponsors .item-logo a {
    position: relative;
    z-index:0;
}

.bloque-organizan {
    margin-bottom: 60px;
}

@media(max-width:992px){
    #bloque-organizan-sponsors h3{
        text-align: center;
    }
}


.footer-bottom {
    border-top: 2px solid #000;
    padding-top: 35px;
    padding-bottom: 50px;
}

.footer-bottom:after {
    content: "";
    display: block;
    clear: both;
}
@media(max-width:992px){
    .footer-bottom{
        display: none;
    }
}
.lista-footer {
    display: inline-block;
    padding: 0;
    margin-top: 0;
    margin-bottom: 25px;
}

.lista-footer li {
    display: inline-block;
    width: 100%;
}

.lista-footer li a {
    color: #000000;
    font-size: 13px;
    font-family: 'Source Sans Pro';
    font-weight: 300;
    text-transform: uppercase;
    font-style: normal;
    line-height: 21px;
}

.lista-footer li a:hover {
    color: #f29100;
    font-weight: 600;
    font-size: 15px;
}

.titulo-sub-lista {
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Source Sans Pro';
    color: #000;
    line-height: 22px;
    display:block;
    text-transform:uppercase;
}

.titulo-sub-lista:before {
    content: "/ ";
}

span.titulo-sub-lista:hover {
    color: #000;
    font-size: 15px;
}

.titulo-sub-lista:hover {
    color: #802980;
    font-size: 18px;
    }


/* Nuevo Footer - Diseño Minimalista */
.footer-copyright {
    height: 65px;
    width: 100%;
    background-color: #ffffff; /* Fondo blanco */
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-family: 'Source Sans Pro', sans-serif;
    border-top: 1px solid #e8e8e8;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.footer-text {
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    color: #888;
    margin: 0;
    white-space: nowrap;
}

.footer-emoji {
    font-size: 1rem;
    margin: 0;
    line-height: 1;
}

.footer-link {
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    margin: 0;
    white-space: nowrap;
    text-decoration: none;
}

.footer-link a {
    color: #666;
    text-decoration: none;
    font-weight: 300;
    transition: color 300ms ease;
}

.footer-link a:hover {
    color: #333;
    text-decoration: none;
}

/* Botón back to top - mantener estilo original */
.footer-copyright .back-top {
    width: 50px;
    height: 50px;
    background-color: #1d2d51;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: -80px;
    right: 30px;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright .back-top:hover {
    background-color: #f29100;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-copyright .back-top i {
    color: #fff;
    font-size: 12px;
    transition: all 300ms ease;
}

.footer-copyright .back-top:hover i {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-copyright {
        height: 55px;
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 6px;
    }
    
    .footer-text,
    .footer-emoji,
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-copyright .back-top {
        width: 40px;
        height: 40px;
        top: -70px;
        right: 20px;
    }
    
    .footer-copyright .back-top i {
        font-size: 10px;
    }

    .logo-odesur{
        margin-top: 2em;
    }
}

@media (max-width: 480px) {
    .footer-copyright {
        height: 50px;
    }
    
    .footer-content {
        gap: 4px;
    }
    
    .footer-text,
    .footer-emoji {
        font-size: 0.9rem;
    }
    .footer-link{
        font-size: 1.2rem;
    }
    
    .footer-copyright .back-top {
        width: 35px;
        height: 35px;
        top: -65px;
        right: 15px;
    }
    
    .footer-copyright .back-top i {
        font-size: 9px;
    }
}

/*
 * COUNT DOWN
 */

#cuenta-regresiva {
    /*margin-top: -91px;*/
    position: absolute;
    bottom: -30px;
    z-index: 1000;
}

#cuenta-regresiva h2 .formato-fecha .numero{
    opacity: 0;
    transition: .5s all ease;
}

#cuenta-regresiva.inicializado h2 .formato-fecha .numero{
    opacity: 1;
}



/*
 * DISCIPLINAS
*/

.deportes-home-disciplinas {
    margin-bottom: 100px;
    margin-top: 100px !important;
}

.icono-deporte-single {
    position: relative;
}

.icono-deporte-single img {
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: -1;
}

.manual{
    font-size: 2.5rem;
}

.contenido-disciplina-single {
    background-image: url('https://fba928.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/sexo.png');
    background-repeat: no-repeat;
    background-position: center center;
}

/*
 * ESCENARIOS
*/

#escenarios h2 {
    margin-bottom: 40px;
}

.cont-escenario {
    margin-top: 80px;
}

.item-escenario {
    width: 100%;
    position: relative;
}

.item-escenario .cont-img {
    overflow: hidden;
    width: 300px;
    height: 230px;
}

.item-escenario .cont-img img {
    transition: all 300ms;
}

.item-escenario:hover .cont-img img {
    transform: scale(1.1);
}

.item-escenario .cont-titulos {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 250px;
    padding: 15px;
    width: 295px;
    transform: translate(0, -50%);
    transition: all 300ms;
}

.item-escenario-inner {
    margin-top: 20px;
    width: 100%;
    position: relative;
}

.item-escenario-inner .cont-img {
    overflow: hidden;
    width: 220px;
    height: 150px;
}

.item-escenario-inner .cont-titulos {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 150px;
    padding: 15px;
    width: 295px;
    transform: translate(0, -50%);
    transition: all 300ms;
}

.item-escenario-inner .cont-img img {
    transition: all 300ms;
}

.item-escenario-inner:hover .cont-img img {
    transform: scale(1.1);
}



.item-escenario-inner .cont-titulos a h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    font-family: 'Source Sans Pro';
    color: #000;
    margin: 0;
    letter-spacing:0;
}

.item-escenario-inner .cont-titulos a h3 span {
    font-weight: 400;
    font-size: 15px;
    font-family: 'Source Sans Pro';
    color: #000;
    letter-spacing:0;
}

.item-escenario-inner .cont-titulos a {
    font-size: 13px;
    color: #812a81;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.listado-disciplinas-escenario{}

.listado-disciplinas-largo{
    margin-top: 0px;
}

.listado-disciplinas-largo .item-deporte-escenario .img{
    width: 70px;
    height: 60px;
    -webkit-mask-size: 65px 65px;
}
.listado-disciplinas-largo .item-deporte-escenario .cont-titulos a{
    font-size: 12px;
}

.item-escenario:hover .cont-titulos {
    left: 220px;
}

.item-escenario-inner:hover .cont-titulos {
    left: 200px;
}

.item-escenario .cont-titulos a h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    font-family: 'Source Sans Pro';
    color: #000;
    margin: 0;
    letter-spacing:0;
}

.item-escenario .cont-titulos a h3 span {
    font-weight: 400;
    font-size: 19px;
    font-family: 'Source Sans Pro';
    color: #000;
    letter-spacing:0;
}

.item-escenario .cont-titulos a {
    font-size: 13px;
    color: #812a81;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-escenarios {

}

/*
 * DOCUMENTACIÃ“N DISCIPLINAS
*/

#documentacion h2, #como-llegar h2 {
    margin-bottom: 20px;
}

#documentacion .descargar-archivo, #como-llegar .descargar-archivo, #planos .descargar-archivo {
    color: #000;
    font-size: 18px;
    font-weight: 100;
    line-height: 60px;
    height: 60px;
    background-image: url('https://e23ecc.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/documentacion.svg');
    background-size: 42px 50px;
    background-repeat: no-repeat;
    background-position: 0 center;
    display: inline-block;
    padding-left: 70px;
    margin-bottom: 20px;
}

#documentacion .descargar-archivo:hover {
    color: #ed9405;
}



/*
 * SINGLE ESCENARIOS
*/

.item-deporte-escenario {
    display: inline-block;
    float: left;
    width: 16%;
    margin-bottom: 15px;
}

.item-deporte-escenario:hover {
    background: #d4e2e7;
}

.item-deporte-escenario .img {
    width: 140px;
    height: 140px;
    mask-position: center;
    mask-size: auto;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 140px 140px;
    -webkit-mask-repeat: no-repeat;
    background-color: #ed9405;
    display: inline-block;
}

.item-deporte-escenario .img a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.item-deporte-escenario .cont-img {
    text-align: center;
}

.item-deporte-escenario .cont-titulos {
    height: 35px;
    float: left;
    position: relative;
    width: 100%;
}

.item-deporte-escenario .cont-titulos a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 90%;
}

.item-deporte-escenario .cont-titulos a, .item-deporte-escenario .cont-titulos a h3 {
    color: #000000;
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
}

.mapa-page {
    margin-top: 35px;
}

.mapa-page:before {
    background-image: url('https://b6e7be.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/flecha-izq.png');
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    background-size: 48px 48px;
    height: 48px;
    width: 48px;
    position: absolute;
    top: 10px;
    left: -10px;
}

.mapa-page:after {
    background-image: url('https://a9ce76.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/flecha-der.png');
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    background-size: 48px 48px;
    height: 48px;
    width: 48px;
    position: absolute;
    bottom: -20px;
    right: -10px;
}

.mapa-page iframe {
    width: 100%;
    height: 220px;
}

.galeria-home {
    margin: 110px 0 70px;
}

@media(max-width:768px){
    .mapa-page:after,.mapa-page:before{
        display: none;
    }
    .galeria-home {
        margin: 0 0 70px;
    }
}


/*
 * BLOQUE HOME
 */

.titulo-home{
    font-size: 56px;
    line-height: 80px;
    font-weight: 100;
    font-family: 'Source Sans Pro';
    font-style: italic;
}

.ver-todas {
    color: #000000;
    font-size: 29px;
    line-height: 50px;
    display: inline-block;
    vertical-align: top;
    margin-top: 20px;
    position: relative;
    padding-left: 70px;
    font-family: 'Roboto Slab';
    text-transform: uppercase;
    font-weight: 300;
    transition: color 300ms;
}

.ver-todas:hover {
    color: #4f4f4f;
}

.ver-todas i {
    font-size: 15px;
    position: absolute;
    top: 5px;
    left: 10px;
    transition: all .4s ease-in-out;
    height: 40px;
    width: 40px;
    background-color: #246cb1;
	border-radius: 50%;
    color: #fff;
    line-height: 40px;
    text-align: center;
}

.ver-todas i:hover {
    opacity: 0.7;
    color: #f5ba2a;
}

.titulo-calendario .ver-todas {
    margin-top: 8px;
}


@media(max-width:768px){
    .titulo-home{
        font-size: 39px;
        line-height: 52px;
    }
}


/*
 * CUENTA REGRESIVA
*/

#cuenta-regresiva {
    width: 100%;
    /*height: 70px;*/
    /*background-image: url('https://7d1d33.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/breadcrumb-bg.png');*/
    background-repeat: repeat-x;
    display: block;
    background-size: auto 100%;
    width: 100%;
    text-align: right;
}

#cuenta-regresiva h2 {
    margin: 0;
    font-weight: 100;
    font-size: 58px;
    line-height: 60px;
    color: #fff;
    display: inline-block;
    position: relative;
    text-align: left;
    font-family: 'Merriweather';
    font-weight: 900;
    font-style: italic;
}

#cuenta-regresiva h2 .formato-fecha {
    display: inline-block;
    font-weight: 400;
    margin: 0 10px;
    position: relative;
}

#cuenta-regresiva h2 .formato-fecha.first {
    margin-left: 0px;
}

#cuenta-regresiva h2 .formato-fecha .numero {
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-style: italic;
    font-family: 'Source Sans Pro';
}

#cuenta-regresiva h2 .formato-fecha span {
    position: absolute;    
    font-size: 16px;
    color: #000;    
    padding-right: 3px;
    line-height: 22px;
    padding-left: 35px;
    right: 0px;
    bottom: -30px;
    transform: translate(0,-50%);
    z-index: 1;
    font-family: 'Source Sans Pro';
    font-style: initial;
    text-transform: uppercase;

}
/*.separador-cuenta{display: none;}*/

@media(max-width:768px){
    .separador-cuenta{display: block;}

    #cuenta-regresiva{
        height: auto;
        text-align: center;
    }
    #cuenta-regresiva h2{
        display: block;
        font-size: 38px;
        line-height: 46px;
        padding: 10px 0;
    }

    #cuenta-regresiva h2 .formato-fecha span{font-size: 13px;top: 60%;padding-top: 0;}

    #cuenta-regresiva h2 .formato-fecha span:before{
        height: 15px;
        top: 2px;
    }

}

/*
 * NOTICIAS HOME
 */

#noticias-home {
    margin-top: 60px;
    overflow: hidden;
}

.noticia {
    margin-bottom: 25px;
}

.noticia .noticia-imagen{
    width: 300px;
    height: 180px;
    float: left;
    background-size: cover;
    position: relative;
    z-index: 0;
    display: block;
    background-position: center center;
}
.noticia .noticia-fecha {
    color: black;
    position: absolute;
    font-weight: 400;
    font-size: 20px;
    right: -10px;
    color: #fff;
    background-image: url('https://90f496.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/medio-circulo-rosa.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-style: italic;
    font-family: 'Merriweather';
    width: 90px;
    height: 42px;
    text-align: center;
}

.noticia .noticia-contenido{
    float: left;
    width: 40%;
    padding-left: 10px;
    position: relative;
    padding-top: 3%;
}
.noticia .noticia-contenido .noticia-titulo{
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    margin-top: -5px;
    line-height: 28px;
    font-family: 'Source Sans Pro';
    color: #2b2b2b;
}
.noticia .noticia-contenido .noticia-titulo:hover {
    color: #f5b927;
}
.noticia .noticia-contenido .noticia-categoria {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    line-height: 29px;
    font-family: 'Roboto Slab';
    color: #2b2b2b;
    text-transform:uppercase;
}

@media(max-width:1200px){
    .noticia .noticia-imagen{
        float: none;
    }
    .noticia .noticia-contenido{
        float: none;
        width: 85%;
        padding-left: 0;
    }
    #noticias-home{
        margin-top: 30px;
        margin-bottom: 140px;
    }
}

@media(max-width:768px){
    #noticias-home{
        text-align: center;
        margin-bottom: 0px;
    }
    .noticia .noticia-imagen{
        float: none;
        display: inline-block;
    }
    .noticia .noticia-contenido{
        float: none;
        width: 100%;
        padding-left: 0;
    }
    .noticia{
        margin-bottom: 40px;
        text-align: center;
    }
}

/*
 * NOTICIA SINGLE DETALLE
 */

#noticia-single-portada{
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #6687b0;
    margin-top: 25px;
}

.noticia-single-titulo{
    color: #1d2d51;
    font-size: 40px;
    font-family: 'Source Sans Pro';
    font-weight: 100;
    background: white;
    margin-top: 10px;
    padding: 10px 10px;
    margin-bottom: 10px;
    line-height: 44px;
}

.noticia-single-meta{
    background: #802980;
    color: white;
    display: inline-block;
    padding: 6px 10px;
    letter-spacing: 1px;
}
.noticia-single-fecha{
    font-size: 13px;
    font-weight: 400;
    font-family: Roboto;
    text-transform: uppercase;

}
.noticia-single-categoria{
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Roboto;
}

.noticia-single-contenido{
    margin-top: 40px;
    color: #1d2d51;
}

.noticia-single-contenido p{
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
}
.noticia-single-contenido h2{
    font-size: 20px;
    font-weight: 500;
    margin-top: 25px;
}
.noticia-single-contenido h3{
    font-size: 17px;
    font-weight: 400;
    margin-top: 30px;
}
.noticia-single-contenido h4{}



/*
 * DISCIPLINAS HOME
 */

 .home-disciplinas {
    margin-top: 50px;
 }

 .archive .home-disciplinas {
    margin-top: 0;
 }

.home-disciplinas ul {
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 0 -20px;
    padding: 0;
}

.home-disciplinas ul li {
    display: inline-block;
    width: 100px;
    height: 100px;
    padding: 0;
    float: left;
    margin: 0 10px;
    text-align: center;
    margin-bottom: 20px;
}

.home-disciplinas ul li a {
    color: #434343;
}

.home-disciplinas ul li .circulo {
    width: 70px;
    display: inline-block;
    transition: all 200ms;
}

.home-disciplinas ul li h3 {
    margin: 5px 0 0 0;
    font-size: 14px;
    font-family: 'Source Sans Pro';
    font-weight: 700;
    line-height: 15px;
    transition: all 200ms;
}

.home-disciplinas ul li:hover .circulo {
    transform: scale(1.2,1.2);
}

.home-disciplinas ul li:hover h3 {
    opacity: 0;
}

/*CULTURA Y EDUCACION HOME*/

#cultura-educacion-home {
    margin-top: 50px;
}

#cultura-educacion-home .col-md-6 {
    justify-content: center;
    align-items: center;
}

#cultura-educacion-home .col-md-6.img-cont {
    text-align: center !important;
    display: inline-block;
}

#cultura-educacion-home .col-md-6 img {
    display: inline-block;
    width: 100%;
    max-width: 450px;
}

#cultura-educacion-home .item-cultura-educacion {
    max-width: 450px;
}

#cultura-educacion-home .item-cultura-educacion:before {
    content: '';
    height: 10px;
    width: 100%;
    display: inline-block;
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
}

#cultura-educacion-home .item-cultura-educacion.educacion:before {
    background-image: url('https://0bc617.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/linea-colores-03.png');
}

#cultura-educacion-home .item-cultura-educacion.cultura:before {
    background-image: url('https://10c99e.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/linea-colores-04.png');
}

#cultura-educacion-home h2 {
    font-family: 'Merriweather';
    font-size: 70px;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

#cultura-educacion-home h2.educacion {
    color: #6fb5b3;
}

#cultura-educacion-home h2.cultura {
    color: #702468;
}

#cultura-educacion-home p {
    font-family: 'Merriweather';
    font-size: 16px;
    font-weight: 400;
    color: #313131;
}

/*
 * SIDEBAR NOTICIA
 */

#sidebar-noticia-single{
    padding-top: 25px;
}

#sidebar-head{background: #1d2d51;    margin-bottom: 40px;}
#sidebar-head h3{
    color: white;
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto Slab;
    display: inline-block;
    padding-left: 10px;
    margin-right: 20px;
    text-transform: uppercase;
}
#sidebar-head ul{
    display: inline-block;
    padding: 0;
    margin: 0;
}
#sidebar-head ul li{
    display: inline-block;
}
#sidebar-head ul li a{
    font-size: 24px;
    min-width: 30px;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    margin-top: -7px;
}
#sidebar-head ul li a i:before{
    color: white;
}
#sidebar-head ul li a i:before{
    color: white;
}

/*
 * NOTICIAS SECCION
 */

#noticias-seccion{
    padding-top: 60px;
}
#noticias-seccion .noticia{
    margin-bottom: 40px;

}
#noticias-seccion .noticia .noticia-contenido .noticia-titulo{
    font-size: 20px;
    line-height: 23px;
}
#noticias-seccion .noticia .noticia-contenido .noticia-categoria{
    font-size: 15px;
    line-height: 23px;
}

.secciones-side h3 {
    font-size: 26px;
    font-weight: 300;
    font-family: 'Roboto Slab';
    margin: 15px 0 0 0;
}


/*
 * DEPORTES HOME
 */

#deportes-home{
    text-align: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 85px;
    background-color: #d8cebe;
    height: 425px;
    margin-top: 230px;

}
#caja-deportes{
    /* overflow: hidden; */
}
#page{
    overflow: hidden;
    position: relative;
    background: white;
    z-index: 100;
}
#deportes-home #deportes-ola1 {
    background: url(https://c75f2f.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/background-olas-grandes1.svg);
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -100px;
    width: 120%;
    z-index: 2;
    transition: .3s all ease;
}
#deportes-home #deportes-ola2 {
    background-image: url(https://2434c5.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/background-olas-grandes2.svg);
    height: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: -193px;
    top: -110px;
    width: 120%;
    transition: .8s all ease;
}
#deportes-home #deportes-ola3 {
    background: url(https://f94269.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/background-olas-grandes3.svg);
    height: 30px;
    width: 100%;
    background-size: cover;
    background-repeat: repeat-x;
    position: absolute;
    left: 0;
    top: -20px;
    z-index: 3;
}
#deportes-home #deportes-ola4 {
    background: url(https://f94269.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/background-olas-grandes3.svg);
    height: 25px;
    background-size: 1500px;
    position: absolute;
    left: 0;
    bottom: -20px;
    z-index: 3;
    transform: rotate(180deg);
    right: -8px;
}

#deportes-home .container {
    height: 100%;
    position: relative;
}

#deportes-home h2 {
    color: #FFF;
    text-transform: uppercase;
    font-size: 200px;
    margin: 0;
    font-weight: 700;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: .3;
}

#deportes-home .icono-deporte h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ccc3b7;
    display: inline-block;
    width: auto;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    padding: 3px 10px;
    font-weight: 300;
    margin: 0;
    transform: translate(-80%,-15%);
    transition: all 300ms;
    opacity: 1;
    font-size: 14px;
    font-family: Roboto Slab;
}

#deportes-home .icono-deporte:hover h3 {
    background-color: #ed9405;
}

#deportes-home .icono-deporte {
    position: absolute;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    transition: .3s all ease;
    /* opacity: 0.5; */
}
#deportes-home .icono-deporte:hover{
    transform: scale(1.1);
}

#deportes-home .aguas-abiertas {
    background-image: url('https://dd3495.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-aguas-abiertas.svg');
    width: 108px;
    height: 99px;
    top: -32px;
    left: 40px;
}

#deportes-home .canotaje {
    background-image: url('https://2e7ed2.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-canotaje.svg');
    width: 150px;
    height: 127px;
    top: -50px;
    left: 375px;
}

#deportes-home .canotaje h3 {
    transform: translate(-40%,-15%);
}

#deportes-home .esqui {
    background-image: url('https://ea4838.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-esqui.svg');
    width: 70px;
    height: 117px;
    top: -36px;
    right: 330px;
}

#deportes-home .futbol {
    background-image: url('https://e71c9d.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-futbol.svg');
    width: 93px;
    height: 66px;
    bottom: -6px;
    left: 195px;
}

#deportes-home .icono-deporte.futbol h3{
    bottom: -20px;
    left: -2px;
}

#deportes-home .handball {
    background-image: url('https://ca0113.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-handball.svg');
    width: 81px;
    height: 66px;
    bottom: -2px;
    left: 579px;
}

#deportes-home .icono-deporte.handball h3{bottom: -26px;left: -7px;}

#deportes-home .hockey {
    background-image: url('https://4fd5d5.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-hockey.svg');
    width: 120px;
    height: 115px;
    top: 9px;
    right: 130px;
}

#deportes-home .hockey h3 {
    transform: translate(-40%,-15%);
}

#deportes-home .paddle-surf {
    background-image: url('https://009048.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-paddle-surf.svg');
    width: 125px;
    height: 118px;
    bottom: 19px;
    left: 372px;
}

#deportes-home .paddle-surf h3 {
    transform: translate(-55%,-4%);
}

#deportes-home .remo {
    background-image: url('https://3b15f5.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-remo.svg');
    width: 120px;
    height: 109px;
    bottom: 10px;
    left: 720px;
}
#deportes-home .icono-deporte.remo h3{
    bottom: 2px;
    left: 28px;
}

#deportes-home .rugby {
    background-image: url('https://ba4ca8.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-rugby.svg');
    width: 94px;
    height: 60px;
    bottom: 8px;
    left: 937px;
}

#deportes-home .tenis {
    background-image: url('https://3a8082.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-tenis.svg');
    width: 92px;
    height: 106px;
    top: 14px;
    left: 219px;
}

#deportes-home .triatlon {
    background-image: url('https://54c2d7.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-triatlon.svg');
    width: 128px;
    height: 82px;
    bottom: 67px;
    left: 54px;
}

#deportes-home .vela {
    background-image: url('https://f033b3.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-vela.svg');
    width: 102px;
    height: 117px;
    top: 13px;
    right: 529px;
}

#deportes-home .vela h3 {
    transform: translate(-50%,-15%);
}

#deportes-home .voleibol {
    background-image: url('https://b27646.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-voleibol.svg');
    width: 66px;
    height: 66px;
    top: -2px;
    right: 0;
}
#deportes-home .skate{
    background-image: url('https://6f4761.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/deportes/dp-skateboarding.svg');
    width: 107px;
    height: 81px;
    top: 144px;
    right: -10px;
}
#deportes-home .icono-deporte.skate h3{
    bottom: 51px;
    left: 17px;
}

@media(max-width:1200px){

    #deportes-home{
        height: auto;
        padding-bottom: 50px;
        padding-top: 60px;
    }
    #deportes-home h2{
        font-size: 115px;
        left: 64%;
        top: 30%;
    }

    #deportes-home .icono-deporte{
        position: relative;
        display: inline-block;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        width: 20% !important;
        margin-bottom: 40px;
        vertical-align: bottom;
        height: 100px !important;
        margin-bottom: 61px;
    }
    #deportes-home .icono-deporte h3{
        position: absolute;
        display: block;
        text-align: center;
        background: none;
        left: 0 !important;
        right: 0 !important;
        bottom: -62px !important;
        display: block;
        transform: none;
        width: 100%;
        height: 60px;
        padding: 0;
    }   

    #deportes-home .futbol{
        background-position: 50%;
        background-size: 65px;
    }
    #deportes-home .handball{
        background-size: 70px;
        background-position: 50% ;
    }
    #deportes-home .rugby{
        background-position: 50%;
        background-size: 63px;
    }
    #deportes-home .triatlon{
        background-position: 50%;
        background-size: 125px;
    }
    #deportes-home .voleibol{
        background-position: 50%;
        background-size: 63px;
    }
    #deportes-home .skate{
        background-position: 50%;
        background-size: 70px;
    }
    #deportes-home .aguas-abiertas{
        background-position: 50%;
        background-size: 91px;
    }
    #deportes-home .hockey{
        background-position: 50%;
        background-size: 90px;
    }
    #deportes-home .esqui{
        background-position: 50%;
        background-size: 58px;
    }

    #deportes-home #deportes-ola3{
        background-size: 1200px;
    }
    #deportes-home #deportes-ola1{

    }
    #deportes-home #deportes-ola2{

    }

}
@media(max-width:768px){
    #deportes-home .icono-deporte{
        width: 30% !important;
    }

    #deportes-home .rugby{
        height: 76px;
    }
    #deportes-home .skate{
        height: 101px;
    }
    #deportes-home #deportes-ola2{
        height: 65px; 
        top: -83px; 
    }
    #deportes-home #deportes-ola1{
        background-size: 810px; 
        left: 0; 
        right: -51%; 
        width: auto; 
        height: 74px; 
        top: -65px;
    }
    #deportes-home h2 {
        font-size: 146px;
    }

    #deportes-home h2{
        font-size: 94px;
        left: 50px;
        top: 51%;
        transform: rotate(90deg);
    }

}
@media(max-width:480px){
    #deportes-home .icono-deporte{
        width: 45% !important;
        margin-bottom: 64px;
    }
}


/*
 * GALERIA HOME
 */

.fila-galeria{
    clear: both;
    overflow: hidden;
    margin-bottom: 5px;
}

.col-galeria-50{
    width: 50%;
    display: block;
    float: left;
}
.col-galeria-100{
    width: 100%;
    display: block;
    float: none;
}
.item-galeria{

    float: left;
    overflow: hidden;
}
.item-galeria a{
    display: block;
    background-position: 50%;
    background-size: cover;    
    height: 180px;
    position: relative;
}
.item-galeria a:before{
    content: '';
    background: #f29100;
    position: absolute;
    left: 0;
    right: 100%;
    top: 0;
    bottom: 0;
    opacity: 0.8;
    transition: .2s all ease;
}
.item-galeria a h4{
    margin: 0;
    color: white;
    font-size: 22px;
    position: relative;
    opacity: 0;
    font-weight: 300;
    transition: .2s all ease;
    padding: 10px;
    line-height: 27px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.item-galeria a:hover h4{
    opacity: 1;
}
.item-galeria a:hover:before{        
    right: 0%;    
}
.item-galeria img{
    max-width: 100%;
}
.item-galeria-50{
    width: 50%;
}
.item-galeria-25{
    width: 25%;
    padding-right: 2.5px;
    padding-left: 2.5px;
    margin-bottom: 5px;
}
.col-galeria-100 .item-galeria:nth-of-type(1){padding-left: 0;}
.col-galeria-100 .item-galeria:nth-of-type(4n){padding-right: 0;}
.col-galeria-100 .item-galeria:nth-of-type(5n){padding-left: 0;}

.item-galeria-30{
    width: 30%;    
}
.item-galeria-30 a{    
    height: 255px;
}
.item-galeria-70{
    width: 70%;    
}
.item-galeria-70 a{    
    height: 255px;
}

.fila-galeria div:first-child{
    padding-right: 2.5px;
}
.fila-galeria div:last-child{
    padding-left: 2.5px;
}

#contenedor-galeria{
    margin-top: 70px;
}

#contenedor-galeria.contenedor-galeria2 {
    margin-top: 0px;
}


#contenedor-galeria .col-galeria-50:first-child{
    padding-right: 2.5px;
}
#contenedor-galeria .col-galeria-50:last-child{
    padding-left: 2.5px;
}

.item-galeria-hover{
    position: absolute;
    top: 5px;
    right: 5px;
}
.item-galeria-hover span{
    color: #000;
    text-transform: uppercase;
    background: #ffffff;
    vertical-align: top;
    float: left;
    margin-top: 10px;
    margin-right: 8px;
    padding-right: 10px;
    font-family: Roboto Condensed;
    font-size: 11px;
    padding-left: 10px;
    opacity: 0;
    transition: .3s all ease;
}
.item-galeria a:hover .item-galeria-hover span{
    opacity: 1;
}
.item-galeria-hover i{
    color: white;
    font-size: 36px;
    vertical-align: top;
    float: right;
}

@media(max-width:992px){

    .col-galeria-50{
        width: 100%;
    }
    .item-galeria-25{width:50%;}
    #contenedor-galeria .col-galeria-50:last-child{padding-left: 0;}
    #contenedor-galeria .col-galeria-50:first-child{padding-right: 0;}
}

/*
 * ESCENARIOS HOME
 */
#escenarios-home{
    padding-top: 50px;
}
#contenedor-escenarios{}

.escenario{
    display: none;
}
.escenario.activo{
    display: block;
}
.escenario-contenido{
    float: left;
    width: 330px;
    padding-left: 15px;
}
.escenario-contenido h3{
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    font-family: 'Roboto Slab';
}
.escenario-contenido h4{
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
    font-family: 'Roboto Slab';
    line-height: 22px;
}
.escenario-contenido p{
    font-size: 16px;
    font-weight: 300
}
.escenario-imagen{
    height: 200px;
    width: 350px;
    float: left;
    background-size: cover;
    background-position: 50%;
}

#listado-items-escenario{
    margin-top: 80px;
}
#listado-items-escenario ul{
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
}
#listado-items-escenario ul:before{
    content: '';
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    height: 2px;
    background: black;
}

#listado-items-escenario ul li{
    display: inline-block;
    width: 18%;
    position: relative;
}
#listado-items-escenario ul li:before{
    content: '';
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background: black;
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: -27px;
    transition: .3s all ease;
}
#listado-items-escenario ul li.activo:before{
    width: 25px;
    height: 25px;
    top: -34px;
    left: 47%;
}
#listado-items-escenario ul li a{
    font-size: 18px;
    font-weight: normal;
    color: black;
    text-transform: uppercase;
    padding: 35px;
    outline: none;
    position: relative;
}
#listado-items-escenario ul li.activo a{
    font-size: 18px;
    font-weight: normal;
    color: black;
    text-transform: uppercase;
    padding: 35px 0;
}

@media(max-width:992px){
    #contenedor-escenarios .listado-disciplinas-escenario{display: none;}

    #escenarios-home{
        padding-top: 0;
    }
    #escenarios-home .titulo-home{
        text-align: center;
    }

    .item-escenario .cont-titulos{
        background-color: #ffffffa1;
        left: 0;
        right: 0;
        width: auto;
    }
    .cont-escenario{text-align: center;}
    .item-escenario .cont-img{
        width: 100%;
        height: auto;
    }


    #listado-items-escenario ul li{
        width: 30%;
        vertical-align: top;
    }

    #listado-items-escenario ul li a{
        padding: 35px 0;
        font-size: 18px;
    }
}

/*
 * CIUDAD HOME
 */

#ciudad-home{
    overflow: hidden;
    padding-top: 190px;
}
#ciudad-home .titulo-home{
    margin-top: 0;
}

.listado-categorias-lugares{
    list-style: none;
    padding: 0;
    margin: 0;
    padding-right: 15px;
    padding-bottom: 80px;
}
.listado-categorias-lugares li{
    text-align: right;
}
.listado-categorias-lugares li a{
    font-size: 35px;
    color: #000;
    font-family: Roboto Slab;
    font-weight: 100;
    position: relative;
    z-index: 2;
    line-height: 43px;
}

.listado-categorias-lugares li a:before {
    content: '';
    left: -20px;
    top: 50%;
    transform:translate(0,-50%);
    bottom: 0;
    background: #e40059;
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 200ms;
    opacity: 0;
}

.listado-categorias-lugares li a:hover:before, .listado-categorias-lugares li a.activo:before {
    opacity: 1;
}

.listado-categorias-lugares li a.activo{
    font-weight: bold;   
}

.listado-categorias-lugares li a span{
    position: relative;
    font-family: 'Source Sans Pro';
}
.ciudad-item{display: none;}
.ciudad-item.activo{display: block;}
.ciudad-item h3{
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 0;
    font-family: 'Source Sans Pro';
}
.ciudad-item h4{
    font-size: 16px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0px;
}
.ciudad-item p{
    font-family: 'Source Sans Pro';
    font-size: 18px;
    margin-top: 5px;
}
.ciudad-item-imagen{
    position: relative;
}
.ciudad-item-imagen .forma-imagen{
    position: absolute;
    right: 70px;
    bottom: -70px;
    width: 130px;
    border-radius: 50%;
    overflow: hidden;
}
.ciudad-item-imagen .forma-imagen svg{
    width: 100%;
}
.ciudad-item-imagen i{
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 26px;
}

@media(max-width:992px){

    #ciudad-home{
        padding-top: 80px;
    }

    #ciudad-home .titulo-home{
        text-align: center;
    }
    #ciudad-home .titulo-home .ver-todas i{
        top: -15px;
        left: 0;
    }

}

/*
 * VOLUNTARIO HOME
 */



@media(max-width:992px){
    #banner-voluntariado-home{
        text-align: center;
    }
    #banner-voluntariado-home a{
        margin-top: 20px;
        margin-left: -53px;
    }
}

/*
 * REDES HOME
 */
 #redes-home {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    background-image: url('https://c3690d.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/fondo-redes-sociales.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    height: 440px;
    background-position: bottom;
    margin-top: 150px;
}

#redes-home .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:992px){
    #redes-home{
        margin-top: 100px !important;
        margin-top: 0;
        height: 250px;
    }
}

/* Centrar la fila de redes sociales */
#redes-home .row {
    justify-content: center;
    align-items: center;
}

/* Ajustar columnas para 5 elementos */
@media (min-width: 992px) {
    #redes-home .col-md-2 {
        flex: 0 0 20%;
        max-width: 20%;
        padding: 0 15px;
    }
}

#redes-home .circulo-redes {
    display: block;
    width: 200px;
    height: 200px;
    background-color: #0C6CB1;
    line-height: 190px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    border: solid 5px #fff;
    margin: 0 auto;
    /* ✨ NUEVAS ANIMACIONES */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 20px rgba(12, 108, 177, 0.3);
    cursor: pointer;
}

/* 🎯 EFECTOS HOVER */
#redes-home .circulo-redes:hover {
    transform: translateY(-10px) scale(1.05);
    background-color: #1a7bc7;
    box-shadow: 0 15px 35px rgba(12, 108, 177, 0.5);
    border-color: #f8f9fa;
}

#redes-home .circulo-redes i {
    font-size: 45px;
    line-height: 150px;
    color: #fff;
    /* ✨ TRANSICIÓN PARA ICONOS */
    transition: all 0.3s ease;
}

/* 🎯 EFECTO HOVER PARA ICONOS */
#redes-home .circulo-redes:hover i {
    transform: scale(1.1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#redes-home .circulo-redes img {
    width: 30%;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    /* ✨ TRANSICIÓN PARA IMÁGENES */
    transition: all 0.3s ease;
}

/* 🎯 EFECTO HOVER PARA IMÁGENES */
#redes-home .circulo-redes:hover img {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    -webkit-filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

#redes-home .circulo-redes a {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* ✨ Z-INDEX PARA MANTENER INTERACTIVIDAD */
    z-index: 10;
}

@media (max-width: 768px) {
    #redes-home .circulo-redes a {
        top: -5px;
    }
}

/* 🎯 EFECTO PULSANTE SUTIL */
@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(12, 108, 177, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(12, 108, 177, 0.4);
    }
}

#redes-home .circulo-redes:not(:hover) {
    animation: pulse-shadow 3s ease-in-out infinite;
}

@media all and (max-width: 992px){
    #redes-home{
        padding: 20px;
        background-size: cover;
        background-position: center;
    }
    
    #redes-home .container{
        margin: 0;
        padding: 0;
    }
    
    #redes-home .row{
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    #redes-home .col-2 {
        flex: 0 0 auto;
        max-width: none;
        padding: 0;
    }
    
    #redes-home .circulo-redes{
        width: 60px;
        height: 60px;
        line-height: 60px;
        margin: 0;
        /* ✨ AJUSTES MOBILE */
        box-shadow: 0 4px 10px rgba(12, 108, 177, 0.3);
    }
    
    /* 🎯 HOVER MÓVIL MÁS SUTIL */
    #redes-home .circulo-redes:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 6px 15px rgba(12, 108, 177, 0.4);
    }
    
    #redes-home .circulo-redes i{
        font-size: 24px;
        line-height: 60px;
    }
    
    #redes-home .circulo-redes img{
        width: 50%;
    }
    
    /* 🎯 DESACTIVAR ANIMACIÓN PULSANTE EN MÓVIL */
    #redes-home .circulo-redes:not(:hover) {
        animation: none;
    }
}

/*
 * EN CONSTRUCCION
 */

#en-construccion{
    background: url(https://fc43e1.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/construccion-bg.jpg)no-repeat white;
    text-align: center;
    padding-top: 210px;
    padding-bottom: 200px;
    background-size: 100%;
}
#en-construccion h1{
    font-size: 45px;
    font-weight: 100;
    font-family: Roboto Slab;
    margin: 0;
    background: #fff;
    padding: 0px 13px;
    max-width: 450px;
    display: table;
    margin: 0 auto;
}
#en-construccion h3{
    color: #1d2d51;
    font-size: 24px;
    font-weight: 300;
    font-family: Roboto;
    background: #fff;
    padding: 8px;
}


/*
 * FOOTER LOGOS
 */

.logo-santa-fe{

}

.logo-rosario{

}

/*
 * ANIMACION BOTON
 */

.btn-violeta:hover:before{
    animation: animationFrames ease-in-out  2s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
}

@keyframes animationFrames{
    0% {
        top: -5px;
        left: -5px;
    }
    25% {
        top: -5px;
        left: 5px;
    }
    50% {
        top: 5px;
        left: 5px;
    }
    75% {
        top: -5px;
        left: 5px;
    }

}

/*
 * FORM VOLUNTARIADO
 */
.voluntariado-transporte{
    width: 50% !important;
}
.voluntariado-radio{}

.bloque-page .form-dis1 .cont-radio {
    float: right;
    width: 50%;
}

.wpcf7-list-item.first{
    width: 40% !important;
}
.wpcf7-list-item.last{
    width: 40% !important;
}
.wpcf7-list-item-label{
    display: inline-block !important;
    width: 20% !important;
}
.wpcf7-form-control-wrap.transporte{
    padding-top: 0 !important;
}
.wpcf7-form-control.wpcf7-radio{
    padding-top: 0 !important;
}

/*
 * Provincias - Modificado para tres columnas
 */
 #paises-seccion{
    padding-top: 90px;
}

#listado-paises{
    list-style: none;
    padding: 0;
    margin: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #000;
    margin-bottom: 80px;
    
    /* Configuración para tres columnas */
    column-count: 3;
    column-gap: 30px;
    column-fill: balance;
}

#listado-paises li{
    text-align: left;
    display: block; /* Cambiado de inline-block a block para columnas */
    margin-bottom: 23px;
    padding-left: 20px;
    font-size: 22px;
    font-weight: 300;
    font-family: 'Source Sans Pro';
    color: #000000;
    
    /* Evitar que los elementos se rompan entre columnas */
    break-inside: avoid;
    page-break-inside: avoid;
}

#listado-paises li a{
    font-size: 22px;
    font-weight: 300;
    font-family: 'Source Sans Pro';
    color: #000000;
}

#listado-paises li a:hover {
    opacity:0.4;
}

#listado-paises li a.activo{
    font-weight: bold;    
}

#listado-paises li a span.bandera45{   
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    margin-right: 15px;
}

/* Responsive: En pantallas pequeñas, ajustar número de columnas */
@media (max-width: 768px) {
    #listado-paises {
        column-count: 1;
        column-gap: 0;
    }
    
    #listado-paises li {
        padding-left: 10px;
    }
}

/* Responsive para tablets */
@media (max-width: 992px) and (min-width: 769px) {
    #listado-paises {
        column-count: 2;
        column-gap: 25px;
    }
    
    #listado-paises li {
        padding-left: 15px;
        font-size: 20px;
    }
}

.logo-pais{
    text-align: center;
    margin-bottom: 60px;
}

.logo-pais img{
    /* max-width: 150px; */
    padding-top: 40px;
}

.data-pais{}

.data-pais td{
    font-size: 17px;
    font-weight: 300;
    vertical-align: top;
    padding-bottom: 20px;
    padding-right: 60px;
}

.data-pais td.titulo-data-pais{
    font-weight: 500;
    color: #000000;
    font-family: 'Source Sans Pro';
    font-size: 20px;
}

.bandera45 {
    background: url(https://98d75a.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/flag45x30sprite.png) no-repeat top left;
    width: 45px;
    height: 30px;
}

.banderacurazao {
    background: url(https://a46662.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/curazao.jpg) no-repeat;
    background-position: center;
}

.bandera45.arg {
    background-position: 0 -320px;
}

.bandera45.aru {
    background-position: 0 -384px;
}

.bandera45.bol {
    background-position: 0 -960px;
}

.bandera45.bra {
    background-position: 0 -1024px;
}

.bandera45.chi {
    background-position: 0 -1440px;
}

.bandera45.col {
    background-position: 0 -1632px;
}

.bandera45.ecu {
    background-position: 0 -2016px;
}

.bandera45.guy {
    background-position: 0 -2912px;
}

.bandera45.pan {
    background-position: 0 -5248px;
}

.bandera45.par {
    background-position: 0 -5280px;
}

.bandera45.per {
    background-position: 0 -5312px;
}

.bandera45.sur {
    background-position: 0 -6464px;
}

.bandera45.uru {
    background-position: 0 -7262px;
}

.bandera45.ven {
    background-position: 0 -7392px;
}

#contenedor-paises{

}

.pais-pagina{display: none;}
.pais-pagina.activo{display: block;}

.col-md-offset-1 {
    margin-left:0!important ;
}

/*
 * EDICIONES ANTERIORES
 */

.fila-ediciones{
    margin-top: 120px;
}

#listado-ediciones{
    list-style: none;
    padding: 0;
    margin: 0;
    padding-right: 0;
    padding-top: 0;    
    padding-bottom: 30px;
}

#listado-ediciones:after {
    display: inline-block;
    content: '';
    width: 100%;
    height: 5px;
    background-image: url('https://af9534.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/formas/linea-colores-01.svg');
    background-repeat: repeat-x;
    background-size: cover;
}

#listado-ediciones li{
    display: inline-block;
    width: 32.5%;
    text-align: center;
}
#listado-ediciones li a{
    font-size: 22px;
    font-weight: 300;
    font-family: Roboto Slab;
    color: #000000;
    display: block;
}

#listado-ediciones li a:hover {
    opacity: 0.4;
}

#listado-ediciones li a.activo{
    font-weight: bold;    
}

#contenedor-ediciones{
    padding-top: 31px;
}
.intro-edicion{
    margin-top: 31px;
    margin-bottom: 64px;
}
.intro-edicion h3{
    font-size: 22px;
    font-weight: 500;
    color: #000000;
    font-family: Roboto;
}
.intro-edicion h4{

}

.edicion-pagina{display: none;}
.edicion-pagina.activo{display: block;}

.intro-edicion{

}
.medallero-historico-titulo{
    font-size: 38px;
    font-weight: 100;
    color: #000;
    font-family: Roboto Slab;
    margin-top: -5px;
    margin-bottom: 23px;
}

.edicion-pagina h3{
    font-size: 18px;
    font-weight: 500;
    margin: 5px 0;
    margin-bottom: 9px;

}
.edicion-pagina h4{
    font-size: 18px;
    font-weight: 500;
    margin: 5px 0;
}
.edicion-pagina h4 span{
    font-size: 18px;
    font-weight: 300;
}

/*
 * CALENDARIO
 */
#calendario-pagina{
    margin-top: 60px;
}
#calendario-pagina table{
    width: 100%;
}
#calendario-pagina table tr{}
#calendario-pagina table tr td{}


td.mes{
    text-align: center;
    border-bottom: 1px solid #574a4b;
    font-family: Roboto Slab;
    font-size: 18px;
}
td.dia{
    font-size: 16px;
    font-weight: 300;
    font-family: Roboto Slab;
    text-align: center;
    border-bottom: 3px solid #574a4b;
    background: white !important;
    padding: 5px 0;
}
td.dia-blank{
    background: white !important;
}
td.fecha{
    text-align: center;
    padding: 5px 0;
    vertical-align: top;
}
#calendario-pagina table tr:nth-of-type(even) td{
    background: #f1f1f1;
}
td.disciplina{
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto Slab;
    text-transform: uppercase;
    padding-left: 2px;
    text-align: left;
}

td.disciplina a {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto Slab;
    text-transform: uppercase;
    padding-left: 20px;
}

td.disciplina a:hover {
    font-weight: 700;
}

.item-calendario {
    font-size: 15px;
    font-weight: bold;
    font-family: Roboto Slab;
    color: white;
    display: inline-block;
    width: 50px;
    height: 30px;
    padding: 5px 0;
    text-align: center;
    background: grey;
    cursor: default;
    position: relative;
}
.item-calendario-acto{
    background-color: #f5b827;
}
.item-congresillo{
    background-color: #d9d9d9;
    color: #0a0a0a;
    font-weight: 400;
}
td.apertura .item-congresillo{
    background: white;
}
.item-calendario-competencia{
    background-color: #42c5e1;
}
.item-calendario-clausura{
    background-color: #802980;
}
.item-calendario-finales{
    background-color: #e02c80;
}

.item-florida{
    background: #f1ca01;
}
.item-roldan{
    background: #c7377d;
}
.item-saco{
    background: #70adc0;
}

.estadio-rojo:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #b10418 transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}

.estadio-azul:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #0c89bf transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}
.estadio-verde:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #528c3f transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}
.estadio-naranja:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #f36f0d transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
}

.medalla{
    background-image:url(https://fc3ad0.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/medalla.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position:  50% 0;
}

.punto:after{
    content: "";
    background: #000;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    margin-left: -5px;
    margin-top: -5px;
}

.wakeboard{
    color: #000;
    font-size: 7px;
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 18px;
}

td.disciplina p {
    display: inline-block;
}

/*
 * IMAGENES CALENDARIO
 */

.imagen-calendario{
    display: inline-block;
    text-align: center;
    width: 60px;
}

.imagen-calendario img{
    max-width: 40px;
}
.imagen-esqui img{
    width: 25px;
}

.imagen-canotaje img{
    max-width: 48px;
}
.imagen-remo img{
    max-width: 49px;
}
.imagen-surf img{
    max-width: 49px;
}
.imagen-futbol img{
    max-width: 36px;
}
.imagen-volley img{
    max-width: 36px;
}
.imagen-handball img{
    max-width: 36px;
}
.imagen-rugby img{
    max-width: 36px;
}
.imagen-triatlon img{
    max-width: 58px;
}

td.apertura{background: #b6ca5b !important}

/*
 *  CALENDARIO REFERENCIAS
 */


#referencias-calendario{text-align: center;text-transform: uppercase;margin-top: 80px;margin-bottom: 80px;padding-left: 30px;max-width: 80%;margin-left: auto;margin-right: auto;}
#referencias-calendario h4{
    display: inline-block;
    font-family: Roboto Slab;
    font-weight: 300;
    float: left;
    margin: 8px 0 0;
}


#referencias-calendario table{
    border-spacing: 10px;
}
#referencias-calendario table tr td{background: none !important;text-align: left;padding-left: 10px;position: relative;padding-top: 5px;padding-bottom: 5px;}

.referencia{width: 16px;height: 16px;display: inline-block;border-radius: 100%;vertical-align: middle;margin-right: 8px;}
.referencia-florida{
    background-color: #f1cb06;
}
.referencia-roldan{
    background-color: #b7407a;
}
.referencia-saco{
    background-color: #62b2c9;
}

#referencias-calendario table h5{
    display: inline-block;
    margin: 0;
    font-size: 11.6px;
    border: none;
    font-weight: bold;
    font-family: Roboto Slab;
}

#referencias-calendario table h6{
    display: inline-block;
    margin: 5px 0;
}
#referencias-calendario table {
    width: 100%;
}
.referencia-triangulo{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 13px 12px 0;
    border-color: transparent #0f88c1 transparent transparent;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}

.referencia-rojo{
    border-color: transparent #b30b25 transparent transparent;
}
.referencia-verde{
    border-color: transparent #528d3b transparent transparent;
}
.referencia-naranja{
    border-color: transparent #d26b1c transparent transparent;
}

.referencia-medalla{
    background: url(https://514976.claudeassets.com/20250909192432im_/https://jadar2025.com/wp-content/themes/juegos2021/img/medalla-gris.png);
    background-size: contain;
    height: 25px;
    width: 23px;
    background-repeat: no-repeat;
    vertical-align: top;
    margin-top: 2px;
    margin-left: -3px;
    margin-right: 4px;
    margin-bottom: -6px;
}

.referencia-apertura{
    background-color: #b7c959;
}

.referencia-ct{
    margin-right: 5px;
}
.referencia-punto{
    width: 7px;
    height: 7px;
    background: #000;
    display: inline-block;
    border-radius: 100%;
    margin-right: 11px;
    margin-left: 5px;
}

.borde-derecho{
    background: #afafaf;
    width: 6px;
    position: absolute;
    right: 17px;
    bottom: -3px;
    top: 0px;
}
.padding-izq{
    padding-left: 20px;
}
.borde-inferior{
    border-bottom: 1px solid #444;
}

@media(max-width:1200px){

    #referencias-calendario h4 {}

}
@media(max-width:992px){
    .imagen-calendario{
        display: none;
    }

    td.disciplina a{
        font-size: 14px;
        padding-left: 5px;
    }
    td.dia{
        font-size: 13px;
    }

    #referencias-calendario{
        max-width: none;
    }
}    

@media(max-width:768px){
    #calendario-pagina table{
        min-width: 700px;
    }
    #calendario-pagina{
        overflow: scroll;
    }
    #referencias-calendario{
        /* min-width: 700px; */
    }
}
@media(max-width:670px){


}

/*
 * GALERIAS
 */
.galeria-encabezado{
    background: #802980;
    padding: 10px 15px;
    margin-top: 40px;
    margin-bottom: -45px;
}
.galeria-encabezado h1{
    display: inline-block;
    color: white;
    font-weight: 300;
    font-size: 21px;
    margin: 0;
    padding: 10px 0;
}
.galeria-encabezado span{
    color: white;
    float: right;
    text-transform: uppercase;
    margin-top: 16px;
    font-size: 13px;
}

#contenedor-video-single{
    margin-top: 80px;
    text-align: center;
}

/*
 * HAMBURGUER
 */

.hamburger {
    padding: 15px 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    display: none;
    outline: none;
}
.hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative; }

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
.hamburger-inner::before {
    top: -10px; }
.hamburger-inner::after {
    bottom: -10px; }
.hamburger--slider .hamburger-inner {
    top: 2px; }
.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
.hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
 * HEADER MOBILE
 */
#logo-mobile{
    display: none;
    text-align: center;
    display: flex!important;
    justify-content: center!important;
}

#header-mobile{
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 130000;
    display: none;
}

@media(max-width:992px){
    #header-mobile{
        display: block;
        padding-top: 1em;
        margin-bottom: 1em;
    }
    body{
        padding-top: 55px;
    }

    #primary-menu{display: none;}

    #logo img.logo-pez{
        left: 50px;
    }
    #logo img.logo-texto{
        left: 150px;
    }
    #fechas-nav{
        padding-left: 0;
        display: block;
        text-align: center;
        padding-top: 14px;
    }
    .hamburger{
        display: inline-block;
        position: relative;
        z-index: 10;
    }
    #logo{display: none;}
    #logo-mobile{
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        padding-left: 20px;
    }
    .logo-mobile-img{
        height: 45px;
        float: right;
        margin-right: 15px;
        margin-top: 4px;
    }
    .menu-menu-secundario-container{
        text-align: center;
    }

    #navegacion-secundaria{
        display: none;
    }
    #masthead{
        padding-top: 10px;
    }
    #navegacion-primaria{
        height: 40px;
    }
}

/* -----------
 *  NAV MOBILE TRANSLATE
 * ----------- */

.mm-slideout {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease,-webkit-transform .4s ease;
    z-index: 1;
}
.mm-menu.mm-offcanvas {
    width: 80%;
    min-width: 140px;
    max-width: 440px;
}
.mm-menu.mm-offcanvas {
    z-index: 0;
    /* display: none; */
    position: fixed;
}
.mm-menu {
    /* background: #f3f3f3; */
    /* border-color: rgba(0,0,0,.1); */
    /* color: rgba(0,0,0,.75); */
}

html.mm-opening .mm-menu.mm-opened~.mm-slideout {
    -webkit-transform: translate(440px,0);
    -ms-transform: translate(440px,0);
    transform: translate(440px,0);
    -webkit-transform: translate3d(440px,0,0);
    transform: translate3d(74%,0,0);
}
html.mm-opened {
    overflow-x: hidden;
    position: relative;
}

html.mm-blocking , html.mm-blocking body {
    overflow: hidden;
}

html.mm-blocking #mm-blocker {
    display: block
}

.mm-menu.mm-offcanvas {
    z-index: 0;
    /* display: none; */
    position: fixed;
}

.mm-menu.mm-offcanvas.mm-opened {
    display: block;
    height: 100vh;
}

.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-opened {
    z-index: 10
}

.mm-menu.mm-offcanvas {
    width: 80%;
    min-width: 140px;
    max-width: 440px;
}

/*html.mm-opening .mm-menu.mm-opened~.mm-slideout {
    -webkit-transform: translate(80%,0);
    -ms-transform: translate(80%,0);
    transform: translate(80%,0);
    -webkit-transform: translate3d(80%,0,0);
    transform: translate3d(80%,0,0);
}
*/
.admin-bar #hamburger {
    position: fixed;
    top: 48px;
    left: 20px;
    z-index: 999999;
}
#hamburger {
    position: fixed;
    top: 16px;
    left: 11px;
    z-index: 999999;
    display: none;
}

@media(max-width:992px){
    #hamburger{
        display: block;
    }
}

html.mm-opening #hamburger{
    /* -webkit-transform: translate(80%,0); */
    -ms-transform: translate(80%,0);
    /* transform: translate(80%,0); */
    /* -webkit-transform: translate3d(80%,0,0); */
    /* transform: translate3d(420px,0,0); */
}
@media all and (max-width: 175px) {
    html.mm-opening .mm-menu.mm-opened~.mm-slideout {
        -webkit-transform:translate(140px,0);
        -ms-transform: translate(140px,0);
        transform: translate(140px,0);
        -webkit-transform: translate3d(140px,0,0);
        transform: translate3d(140px,0,0)
    }
}

@media all and (min-width: 550px) {
    html.mm-opening .mm-menu.mm-opened~.mm-slideout {
        -webkit-transform:translate(440px,0);
        -ms-transform: translate(440px,0);
        transform: translate(440px,0);
        -webkit-transform: translate3d(440px,0,0);
        transform: translate3d(440px,0,0);
    }

}

#mm-blocker {
    background: rgba(56, 53, 51, 0.44);
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.mm-menu.mm-opened.mm-pagedim-black~#mm-blocker {
    background: #000;
}

html.mm-blocking #mm-blocker {
    display: block;
    opacity: .3;
    -webkit-transition: opacity .4s ease .4s;
    transition: opacity .4s ease .4s;
}


/* -----------
 *  SCROLL BARRA MOBILE
 * ----------- */

#mobile-main-nav::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

#mobile-main-nav::-webkit-scrollbar
{
    width: 6px;
    background-color: #F5F5F5;
}

#mobile-main-nav::-webkit-scrollbar-thumb
{
    background-color: rgba(78, 78, 78, 0.44);
}

#mobile-main-nav{
    height: 100vh;
    overflow-y: scroll;
    background: #fff;
    margin-top: -56px;
    /* position: relative; */
}

/*
 * MENU MOBILE
 */
#primary-menu-mobile{list-style: none;padding: 0;padding-top: 28px;margin-bottom: 8px!important;}
#primary-menu-mobile li{position: relative;}
#primary-menu-mobile li a{
    color: #4e4e4e;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Roboto Slab';
    text-transform: uppercase;
    padding-right: 3px;
    display: block;
    padding-left: 33px;
    padding-top: 5px;
    padding-bottom: 1px;
}


#primary-menu-mobile li > ul.sub-menu{list-style: none;/* display: none; */background: white;padding: 0;max-height: 0;padding-left: 32px;overflow: hidden;transition: .3s all ease;}
#primary-menu-mobile li > ul.sub-menu li {margin-bottom: 7px;}

#primary-menu-mobile li.submenu-activo > ul.sub-menu{
    /* display: block; */
    max-height: 900px;
    padding-top: 20px;
    padding-left: 1em;
}

#primary-menu-mobile li > ul.sub-menu li a{
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    position: relative;
    z-index: 1;
    font-family: 'Roboto';
    color: #000000;
    letter-spacing: 0.05em;
    font-size: 14px;
    padding: 0;
    padding-bottom: 0.7em;
}

/*
 * secundary-menu-mobile
 */

#secundary-menu-mobile{
    position: relative;
    list-style: none;
    display: flex;
    padding-left: 10%;
    gap: 0;
    margin-top: 0!important;
    top: -10px;
}
#secundary-menu-mobile .destacado-mobile{
    display: flex;
    flex-direction: column;
    gap: 0;
    width: auto;
}
#secundary-menu-mobile .entradas-juegos-header-mobile {
  float: right;
  color: var(--white);
  font-family: 'Source Sans Pro';
  font-weight: 700;
  display: inline-block;
  padding: 0 0!important;
  border-radius: 10px;
  margin: 3px 0 0 3px;
  font-size: 15px;
  background-color: transparent!important;
}

#secundary-menu-mobile .fecha-juegos-header-mobile {
  float: right;
  background-color: var(--primary-blue);
  color: var(--white);
  font-family: 'Source Sans Pro';
  font-weight: 700;
  display: inline-block;
  padding: 0 0!important;
  border-radius: 10px;
  margin: 3px 0 0 3px;
  font-size: 15px;
  background-color: transparent!important;
}

#secundary-menu-mobile li{
    margin-bottom: 13px;
}
#secundary-menu-mobile li a{
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    position: relative;
    z-index: 1;
    font-family: 'Roboto';
    color: #4e4e4e;
    letter-spacing: 0.05em;
    font-size: 24px;
    padding: 0;
}
.submenu-evento-mobile{
    padding: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
}
.color a{
    color: #e12c80 !important;
}

.submenu-activo .submenu-evento-mobile{
    max-height: 200px;
}

.submenu-evento-mobile{
    padding: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: .2s all ease;
    margin-top: 10px;
}

#secundary-menu-mobile li.menu-item-has-children > a:after{
    content: "\e901";
    font-family: 'juegos-sandia';
    font-size: 7px;
    color: #acb2bb;
    margin-top: 7px;
    transition: .2s all ease;
    display: inline-block;
    margin-left: 11px;
    vertical-align: top;
}
#secundary-menu-mobile li.menu-item-has-children.submenu-activo > a:after{
    transform: rotate(180deg);
}

#redes-mobile{
    list-style: none;
    margin-top: -8px;
}
#redes-mobile li{
}
#redes-mobile li a{
    font-size: 26px;
    margin-right: 5px;
    display: inline-block;
}

.navigation{
    margin-top: 30px;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    color: #fff;
    text-decoration:none;
}

.navigation li {
    display: inline;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    background-color: #637f9f;
    border-radius: 3px;
    cursor: pointer;
    padding: 10px 12px;
    margin: 0 3px;
    font-size: 16px;
}

.navigation li a:hover,
.navigation li.active a {
    background-color: #be2b80;
}

/* IFRAME CALENDARIO */
@media (max-width:480px) {
    .iframe-calen{
        width: 96vw;
    }
}
@media (max-width:1200px) {
    .iframe-calen{
        width: 96vw;
    }
}
/* REFERENCIAS CALENDARIO */
.contenedor-referencias{
    display: flex;
    justify-content: center;
    align-items: center;
}
.items-referencias{
    display: flex;
    justify-content: center;
    align-items: center;
}
.referencias-calen-flex{
    height: 1.5rem;
    width: 1.5rem;
    min-width: 1.5rem;
    border-radius: 50%;
    margin: 5px;
}
.texto-caja-escenario-flex{
    display: inline-block;
    align-self: center;
}
.items-referencias{
    margin: 5px;
}
.enlace-referencia{
    font-size: 18px;
}
.muni-referencia{
    background-color: #35b6b4;
}
.newells-referencia{
    background-color: #1877bd;
}
.rural-referencia{
    background-color: #e5005b;
}
.paseo-referencia{
    background-color: #91c028;
}
.laguito-referencia{
    background-color: #bd82b7;
}
.provincial-referencia{
    background-color: #d65c14;
}
.hipodromo-referencia{
    background-color: #831f6a;
}

/*
     FILE ARCHIVED ON 19:24:35 Sep 09, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 08:25:17 Aug 13, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.53
  exclusion.robots: 0.072
  exclusion.robots.policy: 0.06
  esindex: 0.008
  cdx.remote: 7.15
  LoadShardBlock: 132.099 (3)
  PetaboxLoader3.datanode: 141.264 (4)
  load_resource: 113.681
  PetaboxLoader3.resolve: 95.817
*/