@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

.light {
    font-weight: 300;
}
.normal {
    font-weight: 400;   
}
.medium {
    font-weight: 500;
}
.bold {
    font-weight: 700;
}

/* font-family: 'Roboto', sans-serif; */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

body {
    overflow-x: hidden;
}

section {
    scroll-margin-block: 100px;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 26px;
}

p {
    font-size: 16px;
}

@media (min-width: 701px) and (max-width: 900px){
    h1 {
        font-size: 33px;
    }
    
    h2 {
        font-size: 25px;
    }
    
    p {
        font-size: 15px;
    }
}

@media (min-width: 501px) and (max-width: 700px){
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    p {
        font-size: 14px;
    } 
}


@media (min-width: 351px) and (max-width: 500px){
    h1 {
        font-size: 31px;
    }
    
    h2 {
        font-size: 23px;
    }
    
    p {
        font-size: 13px;
    } 
}

@media (min-width: 1px) and (max-width: 350px){
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    p {
        font-size: 12px;
    } 
}






/* MENU  RESPONSIVE */
#header .menu {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 100px;
}

#header nav.abajo {
    position: fixed;
}

#header #menu-bar {
    display: none;
}

#header label {
    cursor: pointer;
    display: none;
}

#header ul {
    list-style: none;
}

#header nav {
    height: 90px;
    background: #3b5284;
}

#header nav .logo {
    width: 400px;
    position: absolute;
    top: 25px;
    left: 5%;
}

#header .logo1 {
    display: none;
}

#header nav ul {
    float: right;
    margin-right: 15px;
    padding-top: 10px;
}

#header nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 7px;
}

#header nav ul li a {
    position: relative;
    color: white;
    padding: 2px 0;
    font-size: 18px;
}

#header nav ul li a:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #5ba8a0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s linear;
}

#header li a:hover, li a.active {
    background: none;
    color: #5ba8a0;
}

#header .checkbtn {
    float: right;
    line-height: 100px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#header #check {
    display: none;
}

#header nav ul li a:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 1480px) {
    #header nav ul li a {
        position: relative;
        color: white;
        padding: 2px 0;
        font-size: 15px;
    }
}

@media (max-width: 1350px) {
    #header nav ul li a {
        position: relative;
        color: white;
        padding: 2px 0;
        font-size: 13px;
    }
}

/*Menú responsive */
@media (max-width: 1200px) {
    #header ul {
        background: #3b5284;
    }

    #header .checkbtn {
        display: block;
    }

    #header label {
        cursor: pointer;
        display: block;
    }

    #header ul {
        position: fixed;
        width: 50%;
        height: 66%;
        background: #3b5284;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all 1s;
    }

    #header nav ul li {
        display: block;
        margin: 20px 0px;
        line-height: 40px;
    }

    #header nav ul li a {
        font-size: 23px;
    }

    #header li a:hover, li a.active {
        background: none;
        color: #5ba8a0;
    }

    #header #check:checked ~ ul {
        display: block;
        left: 0;
    }

    #header .hide-menu ul {
        display: none;
    }
}

@media (max-width: 750px) {
    #header nav .logo {
        display: none;
    }

    #header nav .logo1 {
        display: block;
        margin-top: 20px;
        margin-left: 20px;
    }

    #header ul {
        position: fixed;
        width: 50%;
        height: 75%;
        background: #3b5284;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all 1s;
    }
}

@media (max-width: 700px) {
    #header nav .logo {
        display: none;
    }

    #header nav .logo1 {
        margin-top: 20px;
        margin-left: 20px;
    }
}

@media (max-width: 380px) {
    #header nav .logo {
        display: none;
    }

    #header ul {
        position: fixed;
        width: 50%;
        height: 58%;
        background: #3b5284;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all 1s;
    }

    #header nav .logo1 {
        margin-top: 20px;
        margin-left: 20px;
    }

    #header nav ul li a {
        position: relative;
        color: white;
        padding: 2px 0;
        font-size: 15px;
    }
}









/* CARRUSEL SECTION */
#carrusel {
    padding-top: 100px;
    background-color: #3b5284;
}

.slideshow-container {
    position: relative;
}

/* Texto Slide 1 */
.texto1 {
    position: absolute;
    font-size: 38px;
    top: 23%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
}

.boton_slide1 {
    position: absolute;
    border-radius: 30px;
    font-size: 30px;
    top: 34%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: white;
    background: #3b5284;
    letter-spacing: 2.8px;
    font-weight: bold;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

.boton_slide1 a {
    text-decoration: none;
    color: white;
}

.boton_slide1 a:hover {
    text-decoration: none;
}

/* Texto Slide 2 */
.texto2 {
    position: absolute;
    font-size: 38px;
    top: 23%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
}

.boton_slide2 {
    position: absolute;
    border-radius: 30px;
    font-size: 30px;
    top: 34%;
    left: 28%;
    transform: translate(-50%, -50%);
    color: white;
    background: #3b5284;
    letter-spacing: 2.8px;
    font-weight: bold;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

.boton_slide2 a {
    text-decoration: none;
    color: white;
}

.boton_slide2 a:hover {
    text-decoration: none;
}


/* Texto Slide 3 */
.texto3 {
    position: absolute;
    font-size: 38px;
    top: 73%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
}

.boton_slide3 {
    position: absolute;
    border-radius: 30px;
    font-size: 30px;
    top: 84%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: white;
    background: #3b5284;
    letter-spacing: 2.8px;
    font-weight: bold;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

.boton_slide3 a {
    text-decoration: none;
    color: white;
}

.boton_slide3 a:hover {
    text-decoration: none;
}

@media (max-width: 1350px) {
/* Texto Slide 1 */
    .texto1 {
        font-size: 37px;
        top: 22%;
    }

/* Texto Slide 2 */
    .texto2 {
        font-size: 37px;
        top: 22%;
    }

/* Texto Slide 3 */
.texto3 {
        font-size: 37px;
        top: 72%;
    }
}

@media (max-width: 1220px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 35px;
        top: 21%;
    }

    /* Texto Slide 2 */
    .texto2 {
        font-size: 35px;
        top: 21%;
    }

    /* Texto Slide 3 */
    .texto3 {
        font-size: 35px;
        top: 71%;
    }
}

@media (max-width: 1160px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 30px;
    }
    
    .boton_slide1 {
        font-size: 28px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 30px;
    }
    
    .boton_slide2 {
        font-size: 28px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 30px;
    }
    
    .boton_slide3 {
        font-size: 28px;
    }
}

@media (max-width: 1000px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 28px;
        top: 20%;
    }
    
    .boton_slide1 {
        font-size: 27px;
    }

    /* Texto Slide 2 */
    .texto2 {
        font-size: 28px;
        top: 20%;
    }
    
    .boton_slide2 {
        font-size: 27px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 28px;
        top: 70%;
    }
    
    .boton_slide3 {
        font-size: 27px;
    }
}

@media (max-width: 950px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 26px;
    }
    
    .boton_slide1 {
        font-size: 25px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 26px;
    }
    
    .boton_slide2 {
        font-size: 25px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 26px;
    }
    
    .boton_slide3 {
        font-size: 25px;
    }
}

@media (max-width: 870px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 24px;
        top: 19%;
    }
    
    .boton_slide1 {
        font-size: 23px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 24px;
        top: 19%;
    }
    
    .boton_slide2 {
        font-size: 23px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 24px;
        top: 69%;
    }
    
    .boton_slide3 {
        font-size: 23px;
    }
}

@media (max-width: 800px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 22px;
        top: 18%;
    }
    
    .boton_slide1 {
        font-size: 21px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 22px;
        top: 18%;
    }
    
    .boton_slide2 {
        font-size: 21px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 22px;
        top: 68%;
    }
    
    .boton_slide3 {
        font-size: 21px;
    }
}

@media (max-width: 730px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 20px;
    }
    
    .boton_slide1 {
        font-size: 19px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 20px;
    }
    
    .boton_slide2 {
        font-size: 19px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 20px;
    }
    
    .boton_slide3 {
        font-size: 19px;
    }
}

@media (max-width: 680px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 18px;
    }
    
    .boton_slide1 {
        font-size: 17px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 18px;
    }
    
    .boton_slide2 {
        font-size: 17px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 18px;
    }
    
    .boton_slide3 {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 16px;
        top: 16%;
    }
    
    .boton_slide1 {
        font-size: 15px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 16px;
        top: 16%;
    }
    
    .boton_slide2 {
        font-size: 15px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 16px;
        top: 66%;
    }
    
    .boton_slide3 {
        font-size: 15px;
    }
}

@media (max-width: 540px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 13px;
        top: 14%;
    }
    
    .boton_slide1 {
        font-size: 11px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 13px;
        top: 14%;
    }
    
    .boton_slide2 {
        font-size: 11px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 13px;
        top: 64%;
    }
    
    .boton_slide3 {
        font-size: 11px;
    }
}

@media (max-width: 430px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 11px;
        top: 13%;
    }
    
    .boton_slide1 {
        font-size: 9px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 11px;
        top: 13%;
    }
    
    .boton_slide2 {
        font-size: 9px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 11px;
        top: 63%;
    }
    
    .boton_slide3 {
        font-size: 9px;
    }
}

@media (max-width: 365px) {
    .boton_slide1 {
        padding: 10px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 9px;
        left: 29%;
    }
    
    .boton_slide2 {
        padding: 10px;
    }
    
    /* Texto Slide 3 */
    .boton_slide3 {
        padding: 10px;
    }
}

@media (max-width: 340px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 10px;
        padding: 9px;
    }
    
    .boton_slide1 {
        padding: 8px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        left: 30%;
        padding: 9px;
    }
    
    .boton_slide2 {
        padding: 8px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 10px;
        padding: 9px;
    }
    
    .boton_slide3 {
        padding: 8px;
    }
}

@media (max-width: 300px) {
/* Texto Slide 1 */
        .texto1 {
        font-size: 9px;
        top: 12%;
    }
/* Texto Slide 2 */
    .texto2 {
        font-size: 8px;
        top: 12%;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 9px;
        top: 62%;
    }
}

@media (max-width: 265px) {
    /* Texto Slide 1 */
        .texto1 {
        font-size: 8px;
    }
    
    .boton_slide1 {
        top: 35%;
        padding: 7px;
    }
    
    /* Texto Slide 2 */
    .texto2 {
        font-size: 7px;
    }
    
    .boton_slide2 {
        top: 35%;
        padding: 7px;
    }
    
    /* Texto Slide 3 */
    .texto3 {
        font-size: 8px;
    }
    
    .boton_slide3 {
        top: 85%;
        padding: 7px;
    }
}










/* ESTADISTICAS SECTION */
#estadisticas {
    background-color: #3b5284;
    width: 100%;
    height: auto;
}


#estadisticas h1 {
    padding-top: 20px;
    color: white;
    text-align: center;
    font-weight: 400;
}

#estadisticas .card p {
    color: #fa1414;
    text-align: center;
}

.contenedor_estadisticas {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 100px 50px;
    margin-bottom: -50px;
}

.contenedor_estadisticas .card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    height: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 35px 65px rgba(0, 0, 0, 0.4);
    transition: 0.6s;
    cursor: pointer;
}

.contenedor_estadisticas .card:hover {
    height: 350px;
}

.contenedor_estadisticas .card .imgBx {
    position: absolute;
    top: 20px;
    width: 300px;
    height: 220px;
    background: #ffffff;
    border-radius: 12px;
    transition: 0.6s;
}

.contenedor_estadisticas .card:hover .imgBx {
    top: -100px;    
    scale: 0.55;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

#estadisticas .card .content {
    position: absolute;
    top: 255px;
    width: 100%;
    padding: 0 30px;
    text-align: center;
    height: 30px;
    overflow: hidden;
    transition: 0.5s;
}

#estadisticas .contenedor_estadisticas p {
    color: #000000;
    text-align: center;
    font-size: 20px;
}

#estadisticas .card:hover .content {
    top: 150px;
    height: 250px;
}

/* Botones Saber más... */
.textHide {
    margin-top: 7px;
    display: none;
    text-align: left;
    color: #313131;
    background-color: #cbe54e;
    list-style-type: square;
    border: solid 2px #000000;
    border-radius: 15px;
    padding: 13px;
    width: 1000px;
    margin: auto;
}

.verMas {
    text-align: center;
    padding-bottom: 30px;
}

.read-more-btn {
    margin-top: 30px;
    height: 50px;
    border-radius: 30px;
    display: inline-block;
    padding: 0 48px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2.8px;
    line-height: 46px;
    background: #3b5284;
    border: 2px solid white;
}

.read-more-btn i{
    margin-left: 18px;
    position: relative;
    top: 2px;
}

.read-more-btn:hover{
    cursor: pointer;
}

@media (max-width: 1050px) {
    .textHide {
        margin-top: 7px;
        display: none;
        text-align: justify;
        color: #313131;
        background-color: #cbe54e;
        list-style-type: square;
        border: solid 2px #000000;
        border-radius: 15px;
        padding: 13px;
        width: auto;
        margin: auto;
        margin-left: 50px;
        margin-right: 50px;
    }

    #estadisticas h1 {
        color: white;
        text-align: center;
        font-weight: 400;
    }
}










/* CANDIDATO SECTION */
#candidatos {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    padding-top: 20px;
}

#candidatos h1 {
    padding-top: 10px;
    color: #3b5284;
    text-align: center;
    font-weight: 400;
}

#candidatos svg {
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
}

svg .st3 .st4 {
    font-family: 'Roboto', sans-serif;
}

#boton1 {
    opacity: 0;
}

#boton1:hover {
    opacity: 1;
}

#boton2 {
    opacity: 0;
}

#boton2:hover {
    opacity: 1;
}

#boton3 {
    opacity: 0;
}

#boton3:hover {
    opacity: 1;
}

#boton4 {
    opacity: 0;
}

#boton4:hover {
    opacity: 1;
}

#boton5 {
    opacity: 0;
}

#boton5:hover {
    opacity: 1;
}

#boton6 {
    opacity: 0;
}

#boton6:hover {
    opacity: 1;
}

#candidatos .contesto {
    text-align: left;
    margin-top: 20px;
    color: #3b5284;
    font-weight: 700;
    display: flex;
    justify-content: center;
}

#candidatos .div_boton {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#candidatos .boton_candidato {
    border-radius: 30px;
    color: white;
    background: #3b5284;
    letter-spacing: 2.8px;
    font-weight: bold;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

.preguntas {
    margin: auto;
    
    margin-right: 20px;
}

details {
    padding: 10px;
}

summary {
    background-color: #3b5284;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgb(59, 59, 59);
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 12px 10px rgba(0, 0, 0, 0.7);
}

.colorp {
    margin-right: 30px;
    margin-left: 35px;
    margin-top: 25px;
    text-align: justify;
}

.conteste {
    font-weight: 800;
}

@media (max-width: 900px) {
    #candidatos svg {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        margin-top: 10px;
    }

    #candidatos .contesto {
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }

    summary {
        background-color: #3b5284;
        justify-content: center;
        text-align: center;
        color: #ffffff;
        border: 1px solid rgb(59, 59, 59);
        border-radius: 20px;
        padding: 10px;
        cursor: pointer;
        box-shadow: 0 12px 10px rgba(0, 0, 0, 0.7);
    }

    .colorp {
        margin-right: 30px;
        margin-left: 35px;
        margin-top: 25px;
        text-align: justify;
    }
}












/* LESIONES SECTION */
#lesiones {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    padding-top: 20px;
}

#lesiones h1 {
    color: #3b5284;
    text-align: center;
    font-weight: 400;
}

#lesiones .titulosregiones {
    color: white;
    background-color: #3b5284;
    border-radius: 20px;
    text-align: center;
}
@media (min-width: 1001px) {
.grid-lesiones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}
}

@media (max-width: 1000px) {
    .grid-lesiones {
        display: grid;
        grid-template-rows: 1fr 1fr;
        max-width: 100%;
        margin: 0 auto;
    }
}

#lesiones svg {
    max-width: 100%;
    height: auto;
}

/* Estilos para cada celda */
.lesiones-item {
    
    padding: 10px; /* Espaciado interno */
}

#cabeza_anterior {
    opacity: 0;
}

#cabeza_anterior:hover {
    opacity: 1;
}

#cuello_anterior {
    opacity: 0;
}

#cuello_anterior:hover {
    opacity: 1;
}

#codo_anterior {
    opacity: 0;
}

#codo_anterior:hover {
    opacity: 1;
}

#hombro_anterior {
    opacity: 0;
}

#hombro_anterior:hover {
    opacity: 1;
}

#cadera_anterior {
    opacity: 0;
}

#cadera_anterior:hover {
    opacity: 1;
}

#muneca_anterior {
    opacity: 0;
}

#muneca_anterior:hover {
    opacity: 1;
}

#rodilla_anterior {
    opacity: 0;
}

#rodilla_anterior:hover {
    opacity: 1;
}

#tobillo_anterior {
    opacity: 0;
}

#tobillo_anterior:hover {
    opacity: 1;
}

#cabeza_posterior {
    opacity: 0;
}

#cabeza_posterior:hover {
    opacity: 1;
}

#dorsal_posterior {
    opacity: 0;
}

#dorsal_posterior:hover {
    opacity: 1;
}

#cervical_posterior {
    opacity: 0;
}

#cervical_posterior:hover {
    opacity: 1;
}

#lumbo_posterior {
    opacity: 0;
}

#lumbo_posterior:hover {
    opacity: 1;
} 

#gluteo_posterior {
    opacity: 0;
}

#gluteo_posterior:hover {
    opacity: 1;
} 









/* ESCALERA SECTION */
#escalera {
    width: 100%;
    height: auto;
}

#escalera h1 {
    padding-top: 15px;
    color: #3b5284;
    text-align: center;
    font-weight: 400;
}

#escalera p {
    padding-top: 15px;
    margin-left: 40px;
    margin-right: 40px;
    text-align: center;
    font-weight: 400;
}

#escalera .fisiatra {
    text-align: justify;
}

#escalera .normalmente {
    text-align: justify;
}

#escalera .cirugia {
    text-align: justify;
}

#escalera .summary_escalera {
    background-color: #3b5284;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgb(59, 59, 59);
    border-radius: 20px;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 250px;
    margin-right: 250px;
    cursor: pointer;
    box-shadow: 0 12px 10px rgba(0, 0, 0, 0.7);
}

#escalera .summary-container {
    padding-bottom: 30px;
}

#escalera .escaleraPNG {
    display: flex; /* Establecemos el contenedor como flexbox */
    justify-content: center; /* Centramos horizontalmente el contenido */
    align-items: center; /* Centramos verticalmente el contenido */
    }

#escalera .escaleraPNG img {
    max-width: 95%;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (max-width: 1222px) {
    #escalera .summary_escalera {
        margin-left: 200px;
        margin-right: 200px;
    }
}

@media (max-width: 1122px) {
    #escalera .summary_escalera {
        margin-left: 160px;
        margin-right: 160px;
    }
}

@media (max-width: 1042px) {
    #escalera .summary_escalera {
        margin-left: 110px;
        margin-right: 110px;
    }
}

@media (max-width: 942px) {
    #escalera .summary_escalera {
        margin-left: 80px;
        margin-right: 80px;
    }
}

@media (max-width: 882px) {
    #escalera .summary_escalera {
        margin-left: 40px;
        margin-right: 40px;
    }
}










/* TERAPIAS SECTION */
#terapias {
    background-color: #f5f5f5;
    width: 100%;
    height: auto;
    padding-bottom: 20px;
}

#terapias h1 {
    padding-top: 15px;
    color: #3b5284;
    text-align: center;
    font-weight: 400;
}

#terapias .celda .panal_img_columna {
    display: none;
}

#terapias .contenedor_terapias {
    display: flex;
    justify-content: center;
    align-items: center;
}

#terapias .celda {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    height: auto;
}

#terapias .celda .panal_img {
    height: 100%;
    width: auto;
    margin: auto;
}

#terapias #panal .panal_img:hover {
    animation: rotar 20s infinite linear;
}

#terapias .celda .panal_img_columna {
    display: none;
}

@keyframes rotar {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

#terapias .celda1 {
    border-radius: 40px;
    background-color: #ffffff;
    border: 1px solid #3b5284;
    width: 600px;
    height: 500px;
    margin-top: 80px;
}

#terapias .celda1 p {    
    text-align: justify;
    color: #202020;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
}

#terapias .celda1 img {
    height: 70%;
    width: 70%;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;   
}

#terapias .celda1:hover {
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.9);
}

#terapias .celda1:hover p {
    font-weight: 700;

}

#terapias .celda1:hover p b {
    text-transform: uppercase;
}

#terapias .celda1:hover img {
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.9);
}

/* Terapias Media Query */
@media (max-width: 1420px) {
    #terapias .celda .panal_img {
        width: 90%;
        height: auto;        
    }

    #terapias .celda .panal_img_columna {
        display: none;
    }
}

@media (max-width: 1270px) {
    #terapias .celda1 {
        border-radius: 40px;
        background-color: #ffffff;
        border: 1px solid #3b5284;
        width: 550px;
        height: 450px;
        margin-top: 0px;
    }
}

@media (max-width: 1140px) {
    #terapias .celda .panal_img {
        width: 80%;
        height: auto;
    }

    #terapias .celda .panal .panal_img_columna {
        display: none;
    }

    #terapias .celda1 {
        border-radius: 40px;
        background-color: #ffffff;
        border: 1px solid #3b5284;
        width: 400px;
        height: 400px;
        margin-top: 20px;
    }

    #terapias .celda1 img {
        height: auto;
        width: 60%;
        margin: auto;
        margin-top: 10px;
        display: flex;
        justify-content: center;   
    }
}

@media (max-width: 850px) {
    #terapias .contenedor_terapias {
        display: grid;
        justify-content: center;
        align-items: center;
    }

    #terapias .celda {
        align-items: center;
    }

    #terapias .celda .panal_img {
        width: 80%;
        height: auto;        
    }

    #terapias .celda .panal .panal_img_columna {
        display: none;
    }

    #terapias .celda1 {
        border-radius: 40px;
        background-color: #ffffff;
        border: 1px solid #3b5284;
        width: 400px;
        height: 400px;
        margin: 0;
    }
}


@media (max-width: 700px) {
    #terapias {
        background-color: #f5f5f5;
    }
    
    #terapias .celda .panal_img_columna {
        display: block;
    }

    #terapias .celda .panal_img {
        display: none;
    }

    #terapias .celda {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
    }

    #terapias .celda1 {
        border-radius: 40px;
        background-color: #ffffff;
        border: 1px solid #3b5284;
        width: 300px;
        height: 400px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    #terapias .celda1 p {    
        text-align: justify;
        color: #202020;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 20px;
    }

    #terapias .celda1 img {
        height: 70%;
        width: 70%;
        margin: auto;
        margin-top: 20px;
        display: flex;
        justify-content: center;   
    }
}


@media (max-width: 500px) {
    #terapias .celda1 {
        border-radius: 40px;
        background-color: #ffffff;
        border: 1px solid #3b5284;
        width: 250px;
        height: 500px;
        margin: 0;
    }

    #terapias .celda1 img {
        height: 60%;
        width: 60%;
        margin: auto;
        margin-top: 10px;
        display: flex;
        justify-content: center;   
    }
}

@media (max-width: 340px) {
    #terapias .celda1 {
        border-radius: 40px;
        background-color: #ffffff;
        border: 1px solid #3b5284;
        width: 250px;
        height: 290px;
        margin: 0;
    }

    #terapias .celda1 p {    
        text-align: justify;
        color: #202020;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 20px;
    }
}











/* CONOCEME SECTION */
#conoceme {
    width: 100%;
    height: auto;
    padding-bottom: 100px;
}

.imagenConoceme01 {
    grid-area: imagenConoceme01;
}

.textoConoceme01 {
    grid-area: textoConoceme01;
}

.imagenConoceme02 {
    grid-area: imagenConoceme02;
}

.textoConoceme02 {
    grid-area: textoConoceme02;
}


#conoceme .conocemeGrid {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: 
    "imagenConoceme01 imagenConoceme02"
    "textoConoceme01 textoConoceme02";
    margin-left: 40px;
    margin-right: 40px;
}

.logoConoceme {
    display: flex;
    justify-content: center;
}

.logoConoceme img {
    max-width: 400px;
    margin-bottom: 20px;
    margin-top: 20px;
    min-width: 150px;
}

#conoceme h1{
    padding-top: 5px;
    color: #3b5284;
    text-align: center;
    font-weight: 400;
}

#conoceme .presento {
    text-align: justify;
    margin-top: 10px;
}

.formacion_Acad {
    margin-left: 40px;
    margin-top: 10px;
}

@media (max-width: 1100px) {
    #conoceme .conocemeGrid {
        display: grid;
        grid-template-columns: 100%;
        grid-template-areas: 
        "imagenConoceme01"
        "textoConoceme01"
        "imagenConoceme02"
        "textoConoceme02";
    }
}

/* IMAGENES DEL CARRUSEL CONOCEME */
#conoceme .sliderPrincipal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

#conoceme .sliderPrincipal img {
    max-width: 100%;
}

#conoceme .container-all {
    position: relative;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
}

#conoceme .slide {
    display: flex;
    transform: translate3d(0, 0, 0);
    transition: all 600ms;
    animation-name: autoplay;
    animation-duration: 5s;
    animation-direction: normal;
    animation-fill-mode: initial;
    animation-iteration-count: infinite;
}

#conoceme .item-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-grow: 0;
    max-width: 100%;
}

#conoceme .pagination {
    position: absolute;
    bottom: 25px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}









/* CONTACTO SECTION */
#contacto {
    width: 100%;
    height: auto;
    background-color: #3b5284;
    min-width: 350px;
}

#contacto h1 {
    color: white;
    font-weight: 400;
}

#contacto h2 {
    color: white;
    font-weight: 300;
    margin-bottom: 10px;
}

#contacto .footer {
    position: relative;
    width: 100%;
    background: #3b5284;
    padding: 5px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#contacto .menu_contacto_item {
    color: #fff;
    text-align: center;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
    margin-bottom: 30px;
}

#contacto .social-icon,
.footer .menu_contacto {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    flex-wrap: wrap;
}

#contacto .social-icon__item,
.menu_contacto_item {
    list-style: none;
}

#contacto .social-icon__link {
    font-size: 4rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    color: #94b447;
}

#contacto .menu_contacto_link:hover {
    color: #5ba8a0;
}


#contacto .social-icon__link:hover {
    transform: rotate(15deg);
}

#contacto .footer p {
    color: #fff;    
    padding-bottom: 5px;
    font-weight: 300;
}

#contacto .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("../images/contacto/wave.svg");
    background-size: 1000px 100px;
}

.wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
}

.wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
}

.derechos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.derechos a {
    color: white;
    text-decoration: none;
}

@keyframes animateWaves {
    0% {
    background-position-x: 1000px;
    }
    100% {
    background-positon-x: 0px;
    }
}

@keyframes animate {
    0% {
    background-position-x: -1000px;
    }
    100% {
    background-positon-x: 0px;
    }
}

@media (max-width: 700px) {
    .menu_contacto_item {
        color: #fff;
        margin: 0 10px;
        display: inline-block;
        transition: 0.5s;
        text-decoration: none;
        opacity: 0.75;
        font-weight: 300;
    }

    .derechos {
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }

    .footer p {
        color: #fff;    
        padding-bottom: 5px;
        font-weight: 300;
    } 
}








/* AVISO COOKIES */
.aviso-cookies {
	display: none;
	background: #fff;
	padding: 20px;
	width: calc(100% - 40px);
	max-width: 300px;
	line-height: 150%;
	border-radius: 10px;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 9999;
	padding-top: 60px;
	text-align: center;
}

.aviso-cookies.activo {
	display: block;
}

.aviso-cookies .galleta {
	max-width: 100px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
	margin-bottom: 15px;
}

.aviso-cookies .boton {
	width: 100%;
	background: #3b5286;
	border: none;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	padding: 15px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.aviso-cookies .boton:hover {
	background: #000;
}

.aviso-cookies .enlace {
	color: #4DBFFF;
	text-decoration: none;
	font-size: 14px;
}

.aviso-cookies .enlace:hover {
	text-decoration: underline;
}

.fondo-aviso-cookies {
	display: none;
	background: rgba(0,0,0,.9);
	position: fixed;
	z-index: 9998;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

.fondo-aviso-cookies.activo {
	display: block;
}


/* AVISO DE PRIVACIDAD */
.privacidad {
	margin: 40px;
	padding: 20px;
	border: 2px solid #3b5284;
	border-radius: 20px;
}

.contenedor-boton-privacidad {
	text-align: center;
	margin-top: 20px;
}

.boton-privacidad {
	background-color: #3b5284;
	color: white;
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.boton-privacidad a {
	text-decoration: none;
	color: inherit;
}

.privacidad h1 {
	text-align: center;
}

.privacidad p {
	text-align: justify;
}

.contenedor-privacidad {
	display: flex;
	justify-content: center;
	align-items: center;
}

.elemento-privacidad {
	padding-top: 30px;
}

.logo-privacidad {
	max-width: 400px;
}