/* fuentes importadas */
/*
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Ephesis&family=Great+Vibes&family=Parisienne&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800');

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*/

@font-face {
    font-family: "Dancing Script";
    src: url(../fonts/DancingScript-VariableFont_wght.ttf);
}

@font-face {
    font-family: "Parisienne";
    src: url(../fonts/Parisienne-Regular.ttf);
}

@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat-VariableFont_wght.ttf);
}



/* Hojas de estilos */


/* azul verdoso: #31a3a4; */
/* morado: #210a27 */
/*button: #d8f044*/

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Montserrat";
    color: #2b2a2a;
}

/* HEADER */

header{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items:start;
    padding: 20px 60px;
}

.fotoHeaderDesktop{
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.fotoHeaderMovil{
    display: none;
}

header img.logoPeluqueria{
    width: clamp(6.25rem, -8.06541rem + 22.346vw, 18.75rem);
    border-radius: 20% 35% 35% 20%;
}

.menuHamburguesa > div{
    display: none;
}

@media screen and (max-width: 480px){
    .fotoHeaderDesktop{
        display: none;
    }

    .fotoHeaderMovil{
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: -1;
    }
    header{
        padding: 20px 20px;
        height: 100px;
    }
}


/* MENÚ */

nav.menuDesktop{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

nav.menuDesktop ul a li{
    display: inline;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85em;
    font-weight: 500;
}

a{
    text-decoration: none;
    margin-left: clamp(0.625rem, -0.8068rem + 2.235vw, 1.875rem);
    margin-right: clamp(0.625rem, -0.8068rem + 2.235vw, 1.875rem);
}

header a{
    color: #FFFFFF;
    transition: all .2s linear;
}

nav.menuDesktop ul a:hover{
    color: #210a27;
}

nav.menuDesktop ul a:last-of-type{
    color: #210a27;
    background-color: #f1ee48;
    padding: 15px 20px;
    border-radius: 10px;
} 

nav.menuDesktop ul a:last-of-type:hover{
    background-color: #210a27;
    color: #fff;
    opacity: 100%;
} 

.botonMenu{
    display: none;
    padding-right: 10px;
    font-size: 30px;
    cursor: pointer;
    color: #210a27;
}

/* Menu Desplegable */

.menuDesplegable{
    display: none;
    position: absolute;
    right: 10px;
    top: 80px;
    width: 300px;
    height: 0;
    z-index: 3;
    background-color: #31a2a4d9;
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menuListaDesplegable{
    list-style-type: none;
    text-align: center;
    padding: 0px 20px;
}
.menuListaDesplegable a:last-of-type li{
    color: #210a27;
    background-color: #f1ee48;
    padding: 15px 20px;
    border-radius: 10px;
} 
.menuListaDesplegable a:last-of-type:hover li{
    background-color: #210a27;
    color: #FFFFFF;
    opacity: 100%;

}
.menuDesplegable.abrirMenu{
    height: 280px;
}


@media screen and (max-width: 1024px){
    nav.menuDesktop{
        margin-top: 12px;
        margin-right: 15px;
    }
    .botonMenu{
        display: block;
    }
    .menuLista{
        display: none;
    }
    .menuDesplegable{
        display: block;
    }
}

@media screen and (max-width: 480px){
    .menuDesplegable{
        left: 10px;
        width: unset;
    }
}

/* FLECHA */

#flecha{
    background-color: #210a27;
    display: inline-block;
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 30px;
    border-radius: 10px;
    opacity: 70%;
    z-index: 10;
}

#flecha img{
    margin: 5px;
    width: 30px;
    height: 28px;
}

#flecha:hover{
    opacity: 100%;
    cursor: pointer;
}



/* MAIN */

main{
    display: flex;
    flex-flow: row nowrap;
    justify-content:center;
    align-items: center;
    margin: 74px 150px 100px 150px;
}

main img{
    width: clamp(18.75rem, 7.60889rem + 17.391vw, 25rem);
    margin-right: 5%;
    border-radius: 50%;
    box-shadow: 0 0px 10px 0px #3333335a;

    /*transition: all .2s linear;*/
}

/*main img:hover{
    box-shadow: 0 0px 10px 0px #3333335a;
    transform: scale(1.03);
    transition: 0.3s ease-in-out;
}*/

main article{
    width: 55%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

h1{
    font-size: clamp(2.3125rem, 1.0242rem + 2.011vw, 3.4375rem);
    color: #210a27;
    font-family: 'Parisienne';
    font-weight: 100;
    margin-bottom: 20px;
    align-self: flex-start;
    margin-left: clamp(1.25rem, -0.17848rem + 2.232vw, 2.5rem);
}

blockquote{
    width: 90%;
    margin-bottom: 30px;
    text-align: justify;
}

blockquote p{
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 30px;
}

blockquote p:last-of-type{
    margin-top: 25px;
    font-size: 14px;
    text-align: right;
}

#button-servicios{
    background-color: #210a27;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all .2s linear;
    box-shadow: 0px 0px 5px 0px rgb(155, 155, 155);

    align-self:center;
    font-weight: 500;
}

#button-servicios:hover{
    color: #210a27;
    background-color: #ebd1f2;
}

@media screen and (max-width: 1025px) {
    main{
        margin: 50px 70px 70px 70px;
    }
}

@media screen and (max-width: 480px){
    main{
    display: flex;
    flex-flow: column nowrap;
    justify-content:center;
    align-items: center;
    margin: 10px 10px 50px 10px;
}
    main article{
    width: 100%;
    text-align: center;
}
    main img{
    margin-right: 0%;
    margin-bottom: 40px;
}
    h1{
    align-self: center;
    margin-left: 0%;
}
    blockquote p:last-of-type {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 1rem;
}
}


/* SECCIONES GENERALES */

section{
    padding: 74px 180px 74px 180px;
    text-align: center;
}


#servicios{
    /* Fondo blanco con degradado a azul al final para unir con PRECIOS*/
    /*
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 87%, rgba(223,234,235,1) 99%);
    */

    /* Fondo azul solid */
    /*background-color: rgb(251, 244, 253);*/

    /* Fondo rosa con degradado a azul */
    background: rgb(251,244,253);
    background: linear-gradient(360deg, rgba(251,244,253,1) 0%, rgba(251,244,253,1) 94%, rgba(255,255,255,1) 100%);

}

#precios{
    /* Fondo azul con degradado a blanco */
    /*background: rgb(255,255,255);
    background: linear-gradient(360deg, rgba(255,255,255,1) 0%, rgba(223,234,235,1) 50%);*/

    /* Fondo azul con degradado a blanco */
    /*
    background: rgb(251,244,253);
    background: linear-gradient(180deg, rgba(251,244,253,1) 0%, rgba(223,234,235,1) 10%, rgba(223,234,235,1) 95%, rgba(255,255,255,1) 100%);
    */
    /* Fondo azul con degradado a morado oscuro */
    /*
    background: rgb(251,244,253);
    background: linear-gradient(180deg, rgba(251,244,253,1) 0%, rgba(223,234,235,1) 10%, rgba(223,234,235,1) 95%, #210a27 100%);
    */
    /* Fondo azul entero*/
    background: rgb(251,244,253);
    background: linear-gradient(180deg, rgba(251,244,253,1) 0%, rgba(223,234,235,1) 10%, rgba(223,234,235,1) 95%);
    
}

#galeria{
    /* Fondo rosa con degradado (más saturado) */
    /*
    background: rgb(255,255,255);
    background: linear-gradient(183deg, rgba(255,255,255,1) 10%, rgba(235,209,242,1) 50%);
    */

    /* Fondo rosa con degradado a blanco */
    /*
    background: rgb(251,244,253);
    background: linear-gradient(360deg, rgba(251,244,253,1) 0%, rgba(251,244,253,1) 94%, rgba(255,255,255,1) 100%);
    */
    /* Fondo rosa con degradado a morado oscuro */
    /*
    background: rgb(251,244,253);
    background: linear-gradient(360deg, rgba(251,244,253,1) 0%, rgba(251,244,253,1) 94%, #210a27 100%);
    */
    /* Fondo rosa */
    background: rgb(251,244,253);
    background: linear-gradient(360deg, rgba(251,244,253,1) 0%, rgba(251,244,253,1) 94%);
}

#reviews{
    /* Fondo azul con degradado (más saturado) */
    /*
    background: rgb(255,255,255);
    background: linear-gradient(3deg, rgba(255,255,255,1) 3%, rgba(172,222,222,1) 75%, rgba(235,209,242,1) 91%);
    */
    background: rgb(251,244,253);
    background: linear-gradient(180deg, rgba(251,244,253,1) 0%, rgba(223,234,235,1) 10%, rgba(223,234,235,1) 95%, rgba(255,255,255,1) 100%);

}

h2{
    font-family: "Dancing Script";
    font-size: 40px;
    text-align: center;
    font-weight: 200;
}

h4{
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
}


/* PIDE TU CITA */

#cita{
    /* Degradado radial azul y rosa */
    /*
    background: rgb(235,209,242);
    background: radial-gradient(circle, rgba(235,209,242,1) 32%, rgba(186,233,233,1) 69%);
    */

    background: rgb(223,234,235);
    background: linear-gradient(180deg, rgba(223,234,235,1) 40%, rgba(251,244,253,1) 60%);

    padding: 20px 100px;
}

#cita article{
    position: relative;
    z-index: 10;

   
    /*background-color: #f1ee48;*/
    background-color: #fff;
    background-color: #31a3a4;

    padding: 50px;
    padding-left: clamp(3.125rem, -7.61188rem + 16.76vw, 12.5rem);
    padding-right: clamp(3.125rem, -7.61188rem + 16.76vw, 12.5rem);
    border-radius: 70px;
    box-shadow: 0px 0px 20px 5px #efefef;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: center;
}

#cita div{
    width: 33%;
}

#cita article h2, #cita article h4{
    text-align: left;
    color: #e5d5e9;
}

#cita article h4{
    margin-bottom: 15px;
    color: #fff;
}

#cita a{
    display: inline-block;
    margin: 0;
    float: right;
    padding: 20px 30px;
    
    background-color: #FFFFFF;
    color: #210a27;
    border-radius: 10px;
    font-size: clamp(1.5625rem, 0.49458rem + 1.667vw, 2.5rem);
    font-weight: 700;
    border: 2px solid #ffffff;
    box-shadow: 0 0px 5px 0px #264646;

    transition: all .2s linear;
}

#cita a:hover{
    border: 2px solid #210a27;
    transform: scale(1.01);
    background-color: #ffffff;
    box-shadow: 0 0px 5px 0px #264646;
}

#cita img{
    position: relative;
    z-index: 10;
    width: clamp(16.25rem, 11.97895rem + 6.667vw, 20rem);
    margin-top: -255px;
    margin-left: 0%;
    rotate: -5deg;
}
  
@media screen and (max-width: 1025px) {
    section{
        padding: 50px 70px 70px 70px;
    }

    #cita a{
        animation: pulse 3s ease-in-out infinite; 
    }

    @keyframes pulse{
        0%{
            transform: scale(1.01);
        }
        50%{
            transform: scale(1.0);
        }
        100%{
            transform: scale(1.01);
        }
    }
    #cita article div:nth-of-type(2){
        display: none;
    }
    #cita article div{
        width: 50%;
    }
    #cita img{
        display: none;
    }
    #cita article{    
        justify-content: space-between;
        align-items: center;
    }
}

@media screen and (max-width: 480px){
    section{
        padding: 30px 20px;
        text-align: center;
    }
    h2{
        margin: 0 30px;
        line-height: 2.5rem;
    }
    h4{
        margin: 10px 30px 30px 30px;
    }
    #cita{
        padding: 30px 20px;
    }
    #cita article{
        padding: 50px;
        padding-left: clamp(3.125rem, -7.61188rem + 16.76vw, 12.5rem);
        padding-right: clamp(3.125rem, -7.61188rem + 16.76vw, 12.5rem);
        border-radius: 70px;
        box-shadow: 0px 0px 20px 5px #efefef;
    
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: center;
    }
    #cita article div{
        width: 100%;
    }
    #cita article div:nth-of-type(2){
        display: none;
    }
    #cita article h2, #cita article h4{
        text-align: inherit;
    }
    #cita article h4{
        margin-bottom: 30px;
    }
    #cita a{
        font-size: 1.7rem;
        float: none;
    }
    #cita img{
        display: none;
    }
}

/* QUE HACEMOS */

#servicios{
    padding-bottom: 0px;
}

#servicios article{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-row: 2;
}

#servicios article > div{
    margin: 10px 30px;
}

#servicios img{
    width: 65px;
    height: 65px;
    margin: 10px;
}

#servicios strong{
    display: block;
    color: #843b98;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

#servicios h3{
    font-size: 1.19rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    background-color: #ebd1f200;
    color: #b96ece;
    padding: 7px 0 0 0;
    border-radius: 15px;
}

#servicios article br{
    display: none;
}

@media screen and (max-width:480px) {
    #servicios{
        padding-bottom: 60px;
    }
    #servicios article{
        display: grid;
        grid-template-columns: auto;
    }
    #servicios article br{
        visibility: hidden;
    }
}

@media screen and (max-width: 1025px) {
    #servicios h3 {
        font-size: 1.2rem;
    }
    #servicios article > div {
        margin: 10px 10px;
    }
    #servicios br{
        display: initial;
    }
}


/* PRECIOS */

#precios{
    padding-top: 120px;
}

#precios article{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
}

#precios h2, #precios h4{
    text-align: left;
}

#precios > div{
    width: 28%;
}

table{
    width: 100%;
    /*background-color: #a1c4c43e;*/
    border-spacing: 0;

    border-radius: 15px;
    /*box-shadow: 0px 0px 15px -2px #b8b8b8;*/
    padding: 0 15px;
    line-height: 30px;
    margin-left: clamp(0rem, -7.1577rem + 11.173vw, 6.25rem);
    margin-right: clamp(0rem, -7.1577rem + 11.173vw, 6.25rem);
    margin-top: -90px;
}

th{
    text-transform: uppercase;
    text-align: left;
    font-weight: 600;
    padding: 10px;
    line-height: 1.5rem;
    font-size: clamp(0.90625rem, 0.79863rem + 0.168vw, 1rem);
}

th img{
    display: block;
    width: 80%;
    margin: 0 auto;
}

th, td{
    border-bottom: 2px solid #ffffff93;
    width: 20%; 
}

tbody tr:last-child th, tr:last-child td{
    border-bottom: none;
}

td{
    font-size: 0.85em;
}

thead{
    height: 200px;
}

thead th span{
    display: block;
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 400!important;
    text-transform:initial;
    color: #2b2a2a;
}

thead th{
    font-size: 1.3rem;
}

thead tr:first-child th{
    text-align: center;
    font-weight: bold;
    padding: 10px 30px 15px 30px;
}

thead .precioUnico{
    color: #31a3a4;
}

thead .peloCorto{
    color: #33b0d1;
}

thead .mediaMelena{
    color: #643caf;
}

thead .peloLargo{
    color: #b96ece;
}

td span{
    font-size: 1.4rem;
}

.columnaMovil{
    display: none;
}


@media screen and (max-width: 480px) {

    #precios{
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        /*background: linear-gradient(180deg, rgba(223,234,235,1) 0%, rgba(223,234,235,1) 94%, rgba(255,255,255,1) 100%);*/
        padding-top: 20px;
    }
    #precios h2, #precios h4{
        text-align: center;
    }
    #precios > div{
        width: 100%;
    }
    #precios article{
        width: 100%;
        display: block;
        overflow-x: scroll;
    }
    table{
        font-size: 0.7rem;
        padding: 0;
        background-color: rgba(223,234,235,1);
        margin-top: -30px;
    }
    th img{
        width: 50px;
    }
    td, th{
        border-bottom: none;
    }
    td ~ .desde{
        padding: 0 10px;
    }

    thead tr:first-child th{
        text-align: center;
        font-weight: bold;
        padding: 5px 10px;
    }

    tbody tr td{
        padding: 0 80px;
        font-size: 1rem;
    }

    tbody tr th, thead tr:first-child th:first-child{
        position: sticky;
        left: 0; 
        z-index: 1;
        /*background-color: #e9f0f1;*/
        background-color: rgba(223,234,235,1);
        /*border-right: 1px solid #b8b8b8;*/
        /*box-shadow: 2px 0px 2px -2px rgba(0,0,0,0.75);*/
        border-bottom: none;
    }
    thead th:first-child{
        border-right: none;
        background-color: rgba(223,234,235,1);
    }

    .columnaMovil{
        display: none;
        padding: 0 115px;
    }

    /*thead tr th:nth-child(3), tbody tr td:nth-child(3), thead tr th:nth-child(5), tbody tr td:nth-child(5){
        background-color: #f7f7f7;
    }

    thead tr th:nth-child(3), thead tr th:nth-child(5){
        background-color: #f2f2f2;
    }
    thead tr th:nth-child(4), thead tr th:nth-child(6){
        background-color: #dde8e9;
    }*/

    th.sticky::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 0;
    bottom: -1px;
    width: 5px;
    border-left: 1px solid #C9D1DC;
    background: linear-gradient(90deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 100%);
}

@media screen and (max-width: 1025) {
    thead tr:first-child th {
        padding: 10px 10px 15px 10px!important;
    }
}

}



/* GALERIA */

#galeria{
    padding-top: 40px;
}


#galeria article{
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
}

#galeria img{
    width: 95%;  
    margin: 10px;
    opacity: 90%;
    transition: all .2s linear;
}

#galeria img:hover{
    opacity: 100%;
    transition: 0.2s ease-in;
}

@keyframes opacity{
    0%{
        opacity: 70%;
    }
    100%{
        opacity: 100%;
        transition: ease-in-out;
    }
}

@media screen and (max-width: 1024px){
    #galeria article{
        display: grid;
        grid-template-columns: auto auto;
        justify-content: center;
        justify-items: center;
    }

}


/* GALERIA DE IMAGENES - SLIDER */

/*
#galeria article .slider{
    overflow: auto;
    display: flex;
    flex-flow: row nowrap;
}

#galeria .slider img{
    width: 25%;  
    margin-right: 10px;
    opacity: 90%;
    transition: all .2s linear;
}

#galeria .slider img:hover{
    opacity: 100%;
    transition: 0.2s ease-in;
}

.botones{
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -200px;
    z-index: 10;
}

button{
    background-color: #fbf4fd00;
    border: none;
}

button.siguiente{
    position: relative;
    right: -50px;
}
button.anterior{
    position: relative;
    left: -50px;
}

button i{
    font-size: 30px;
    color: #cfcfcf;
}

button i:active{
    color: #a3a3a3;
    transition: all .2s ease-in-out;

}

@media screen and (max-width: 1024px){
    #galeria img{
        width: 70%;
    }
}
*/
/* REVIEWS */

#reviews{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
}

#reviews h2, #reviews h4{
    text-align: left;
}

#reviews > div{
    width: 35%;
}

#reviews > article{
    width: 65%;
    padding: 74px -180px 74px -180px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.description {
    text-align: center;
    width: 50%;
}

.imagenCliente {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}

.imagenCliente span {
    margin-left: 10px;
}

.imagenCliente img {
    width: 40px;
}

.reviewItem {
    width: 40%;
    height: 230px;
    padding: 15px 15px;
    margin: 16px;
    cursor: pointer;
    border-radius: 10px;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    transition: all .2s linear;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.reviewItem:hover {
    border-color:#97d6d6;
    transform: scale(1.01);
    background-color: #ffffff;
    box-shadow: 0 0px 5px 0px #cbc0c0;
}

.reviewItem article{
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top {
    margin-bottom: 1rem;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
}

.top ul {
    display: flex;
    list-style: none;
}

.top ul li {
    padding-left: 4px;
}

article p {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: system-ui;
}

@media screen and (max-width:1024px) {
    article p {
        margin: 0;
    }
    .reviewItem {
        width: 40%;
        height: 250px;
        margin: 12px;
    }
    .reviewItem article{
        padding: 5px 5px;
    }
}

@media screen and (max-width:480px) {

    #reviews{
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
    }

    #reviews h2, #reviews h4{
        text-align: center;
    }
    
    #reviews > div{
        width: 100%;
    }
    
    #reviews > article{
        width: 100%;
    }

    .reviewSection {
        padding: 0;
    }

    .reviewItem {
        width: 100%;
        height: auto;
    }

    .imagenCliente {
        margin-bottom: 0.6rem;
    }

    .top {
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}



/* CONTACTO */

#contacto{
    margin-bottom: 0;
}

#contacto > article{
    display: flex;
    flex-flow: row nowrap;
    justify-content:space-between;
    align-items: flex-start;
    width: 100%;
}

#contactText{
    width: 44%;
    text-align: left;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    padding: 15px;
}

.horario{
    margin-bottom: 30px;
}

.info{
    padding: 0 15px;
}

h3{
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    background-color: #ebd1f2;
    padding: 15px;
    border-radius: 15px;
}

.horario ul{
    padding: 0 15px;
}

.horario ul li{
    list-style-type: none;
    margin-bottom: 10px;
    font-weight: 400;
}

.horario ul li span{
    font-weight: 600;
    padding-right: 5px;
}

.horario ul li:last-of-type{
    margin: 20px 0 0 0;
    font-size: 0.7rem;
    text-align: right;
}

.horario ul li:last-of-type span{
    padding-right: 2px;
}

.pideCita .contactoCita{
    display: flex;
    justify-content: center;
    font-size: 25px;
}
.contactoCita i{
    margin: 0 10px;
    color: #31a3a4;
    border: 2px solid #97d6d6;
    border-radius: 50%;
    padding: 20px;
}

.contactoCita a:first-child i, .contactoCita a:last-child i{
    padding: 20px 22px;
}

.contactoCita i:hover{
    color: #ffffff;
    border: 2px solid #dde8e9;
    background-color: #31a3a4;
    cursor: pointer;
}

.info{
    display: flex;
    flex-flow: row wrap;
    margin-top: 30px;
}

.info i{
    font-size: 18px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.info a, .info p{
    width: 94%;
    margin: 0;
    color: #000000;
}

.mapa{
    width: 52%;
    height: 330px;
    padding: 15px; 
}
.mapa i{
    display: inline-block;
    display: none;
    margin-bottom: 20px;
}

iframe{
    width: 100%;
    height: 330px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px -2px #b8b8b8;
}

@media screen and (max-width: 1024px) {
    .horario ul li{
        font-size: 0.9rem;
    }
    .horario ul li:last-of-type{
        margin: 20px 0 0 0;
        font-size: 0.6rem;
    } 
    .pideCita .contactoCita{
        display: flex;
        justify-content: center;
        font-size: 15px;
    }
    .contactoCita i{
        margin: 0 5px;
        padding: 15px;
    }
    
    .contactoCita a:first-child i, .contactoCita a:last-child i{
        padding: 15px 17px;
    }

}

@media screen and (max-width: 480px) {
    #contacto{
        padding: 0;
    }
    #contactText{
        width: 100%;
        padding: 0 35px;
    }
    #contacto > article{
        width: 100%;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
    }
    h3{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        font-size: 20px;
        padding: 10px;
    }
    .horario ul{
        padding: 0;
    }
    #contactText .horario ul li, #contactText .horario ul li:last-of-type{
        text-align: center;
    }
    .contactoCita i{
        margin: 0 6px;
        font-size: 1.4rem;
    }
    #contactText > div:last-of-type{
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
    }
    .info i{
        margin-bottom: 75x;
        margin-right: 0;
    }
    .info p{
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
    .mapa{
        width: 100%;
        padding: 15px 0 0 0;
    }
    iframe{
        width: 100%;
        height: 285px;
        border-radius: 0;
        box-shadow: none;
    }

}

/* FOOTER */

footer{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: end;

    background-image: url(../img/footer-3.svg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    padding: 100px 90px 70px 90px;
    
    font-size: 14px;
    text-align: right;
    color: #FFFFFF;
    line-height: 25px;
}

footer div:first-child p{
    text-align: left;
}

footer div:last-child p:first-of-type{
    margin: -15px 0 12px 0;
    font-size: 1.8rem;
    text-align: right;
    color: #210a27;
    font-weight: 800;
    font-family: "Parisienne";
}

footer div:last-child p:nth-child(5){
    padding-top: 7px;
}

footer a{
    padding: 0;
    margin: 0;
    color: rgba(186,233,233,1);
    transition: all .2s linear;
}

footer a:hover{
    color: #210a27;
}

footer div:last-child img{
    width: 25%;
    border-radius: 50%;
}

@media screen and (max-width:480px) {
    footer{
        display: flex;
        flex-flow: column-reverse nowrap;
        justify-content: space-between;
        align-items: center;    

        height: auto;
        background-image: url(../img/footer-mobile-2.svg);
        padding: 10px 20px 30px 20px!important;
        z-index: 10;
    }
    footer div:last-child{
        margin-bottom: 20px;
        text-align: center;
    }
    footer p{
        text-align: center!important;
    }
    footer img{
        border-radius: 50%;
        border: 1.4px solid #ffffff;
        margin-bottom: 30px;
    }
    footer div:last-child p:first-of-type{
        margin: -15px 0 20px 0;
    }
}

    @media screen and (max-width: 1025px) {
    footer {
            padding: 50px 70px 50px 70px;
        }

}

