* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: Avenir;
    cursor: url(../img/cursor_tijeras.cur), default;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Avenir';
    src: url(../fonts/AvenirLTStd-Black.otf);
}

@font-face {
    font-family: 'AvenirThin';
    src: url(../fonts/AvenirLTStd-Roman.otf);
}

a {
    cursor: pointer;
    text-decoration: none;
}

p {
    font-family: AvenirThin;
}

header {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.logo {
    object-fit: contain;
    width: 100%;
    height: auto;
    align-self: center;
    cursor: pointer;
}

header a {
    width: auto;
    height: 100%;
    align-self: center;
    overflow-y: hidden;
}

/*Consulta de medios con pantallas superiores a 380p*/

@media (min-width: 380px) {
    .logo {
        width: 75%;
    }
}

/*Consulta de medios con pantallas superiores a 580p*/

@media (min-width: 580px) {
    .logo {
        width: 55%;
    }
}

/*Consulta de medios con pantallas superiores a 7200p*/

@media (min-width: 720px) {
    .logo {
        width: 45%;
    }
}

/*Consulta de medios con pantallas superiores a 10800p*/

@media (min-width: 1080px) {
    .logo {
        width: 35%;
    }
}

/*Consulta de medios con pantallas superiores a 21600p*/

@media (min-width: 2160px) {
    .logo {
        width: 25%;
    }
}

/*
*************************************************************************************
*                                       M E N Ú                                    *
*************************************************************************************
*/

nav {
    margin: -5px 0 0 0;
    width: 100%;
    position: fixed;
    right: 0;
    top: 90px;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contenedor_barras_menu {
    position: fixed;
    left: 0;
    top: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 50%;
    box-shadow: #000 1px 1px 1px, inset #fff -4px 4px 8px;
    margin: 0;
    padding: 8px 0;
    background: rgba(220, 199, 183, 1);
    cursor: pointer;
    z-index: 3;
    overflow: hidden;
    transition: all 0.2s;
}

.barra1 {
    width: 70%;
    height: 4px;
    background-color: black;
    transition: all ease 2s;
    cursor: pointer;
}

.barra2 {
    width: 70%;
    height: 4px;
    background-color: black;
    transition: all ease 2s;
    cursor: pointer;
}

.barra3 {
    width: 70%;
    height: 4px;
    background-color: black;
    transition: all ease 2s;
    cursor: pointer;
}

#menu {
    display: none;
}

.contenedor_menu {
    position: fixed;
    top: 10px;
    right: 0;
    width: 45%;
    height: auto;
    padding: 0;
    background: #7ca7ad;
    text-align: center;
    transition: all ease 2s;
    transform: translateX(110%);
    overflow-y: hidden;
    border-radius: 25px 0 0 25px;
    box-shadow: #000 -8px 6px 8px;
}

.contenedor_menu li {
    padding: 20px 20px;
    transition: ease 1s;
}

.contenedor_menu a {
    color: #fff;
    text-decoration: none;
}

.contenedor_menu li:hover {
    background: rgba(0, 0, 0, 1);
    transform: scale(1.2);
}

.contenedor_menu li:hover>a {
    color: #fff;
}

#menu:checked~.contenedor_barras_menu {
    box-shadow: #000 -2px 2px 10px, inset -4px 4px 28px;
    transform: scale(0.9);
}

#menu:checked~.contenedor_menu {
    display: block;
    transform: translateX(0);
}

#menu:checked~.contenedor_barras_menu .barra2 {
    display: none;
}

#menu:checked~.contenedor_barras_menu .barra1 {
    transform: rotate(39deg) translate(4px, 6px);
}

#menu:checked~.contenedor_barras_menu .barra3 {
    transform: rotate(-39deg) translate(4px, -6px);
}

/*Consulta de medios con pantallas superiores a 7200p*/

@media (min-width: 720px) {
    nav {
        flex-direction: row!important;
    }
    .contenedor_barras_menu {
        display: none;
    }
    .contenedor_menu {
        display: inline-flex!important;
        transform: translateX(0);
        align-items: center!important;
        top: 0;
        left: 0;
        width: 100%;
        height: 10vh;
        border-radius: 0;
        transition: none;
    }
    .contenedor_menu li {
        overflow: hidden;
        width: 20%;
        height: 100%;
        font-size: medium;
        padding-left: 0;
        padding-right: 0;
    }
}

/*Consulta de medios con pantallas superiores a 10800p*/

@media (min-width: 1080px) {
    .contenedor_menu li {
        font-size: larger;
    }
}

/*Consulta de medios con pantallas superiores a 21600p*/

@media (min-width: 2160px) {
    .contenedor_menu li {
        font-size: x-large;
    }
}

/*
*************************************************************************************
*                            Q U I E N E S  S O M O S                               *
*************************************************************************************
*/

.header_container_qs {
    width: 100%;
    height: 20vh;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 5;
    transition: all 0.5s;
}

.header_container_qs img {
    width: auto;
    height: 100%;
}

.scrolled {
    position: fixed;
    top: 50px;
    right: 5px;
    width: 50px !important;
    height: 50px !important;
    background: #000;
    border-radius: 50%;
}

/*
*************************************************************************************
*                                   M E N Ú  Q S                                    *
*************************************************************************************
*/

.qs {
    left: 10px;
    top: 40px;
}

.contenedor_barras_menu_qs {
    position: fixed;
    left: 0;
    top: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 50%;
    box-shadow: #000 1px 1px 1px, inset #fff -4px 4px 8px;
    margin: 0;
    padding: 8px 0;
    background: rgba(220, 199, 183, 1);
    cursor: pointer;
    z-index: 3;
    overflow: hidden;
    transition: all 0.2s;
}

.scrolled_menu {
    top: 50px;
    left: 5px;
}

.contenedor_menu_qs {
    position: fixed;
    top: 20vh;
    right: 0;
    width: 45%;
    height: auto;
    padding: 0;
    background: #7ca7ad;
    text-align: center;
    transition: all ease 2s;
    transform: translateX(105%);
    overflow-y: hidden;
    border-radius: 25px 0 0 25px;
    box-shadow: #000 -8px 6px 8px;
}

.contenedor_menu_qs li {
    padding: 20px 20px;
    transition: ease 1s;
}

.contenedor_menu_qs a {
    color: #fff;
    text-decoration: none;
}

#menu:checked~.contenedor_barras_menu_qs {
    box-shadow: #000 -2px 2px 10px, inset -4px 4px 28px;
    transform: scale(0.9);
}

.contenedor_menu_qs li:hover {
    background: rgba(0, 0, 0, 1);
    transform: scale(1.2);
}

.contenedor_menu_qs li:hover>a {
    color: #fff;
}

#menu:checked~.contenedor_menu_qs {
    display: block;
    transform: translateX(0);
}

#menu:checked~.contenedor_barras_menu_qs .barra2 {
    display: none;
}

#menu:checked~.contenedor_barras_menu_qs .barra1 {
    transform: rotate(39deg) translate(4px, 6px);
}

#menu:checked~.contenedor_barras_menu_qs .barra3 {
    transform: rotate(-39deg) translate(4px, -6px);
}

/*Consulta de medios con pantallas superiores a 7200p*/

@media (min-width: 720px) {
    .header_container_qs{
        height: 20vh;
    }
    .logo_qs {
        position: fixed;
        top: 0;
        right: calc(50% - 65px / 2);
        width: 120px!important;
        height: 120px!important;
        border-radius: 50%;
        background: none;
    }
    .contenedor_barras_menu_qs {
        display: none;
    }
    .contenedor_menu_qs {
        display: inline-flex!important;
        transform: translateX(0);
        align-items: center!important;
        top: 20vh;
        left: 0;
        width: 100%;
        height: 10vh;
        border-radius: 0;
        transition: all 0.5s;
    }
    .contenedor_menu_qs li {
        overflow: hidden;
        width: 20%;
        height: 100%;
        font-size: medium;
        padding-left: 0;
        padding-right: 0;
    }
}

/*Consulta de medios con pantallas superiores a 10800p*/

@media (min-width: 1080px) {
    .contenedor_menu_qs li {
        font-size: larger;
    }
}

/*Consulta de medios con pantallas superiores a 21600p*/

@media (min-width: 2160px) {
    .contenedor_menu_qs li {
        font-size: x-large;
    }
}

/*
*************************************************************************************
*                                       M A I N                                     *
*************************************************************************************
*/

main {
    margin: 25vh 15vw 0;
}

.contenedor_principal_qs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.titulo_principal {
    width: 100%;
}

.texto_principal {
    justify-self: center;
    text-align: center;
    padding: 20px 10px;
}

.titulo_texto {
    text-align: center;
}

.texto {
    text-align: center;
    margin: 20px 0 20px;
}

.contenedor_imagen {
    margin-bottom: 20px;
}

/*Consulta de medios con pantallas superiores a 7200p*/

@media (min-width: 720px) {
    main{
        margin: 40vh 5vw 0;
    }
    .contenedor_imagen, img{
        width: 100%;
    }
    .contenedor_texto {
        width: 50%;
        height: 100%;
        padding: 0 80px;
    }
}

/*Consulta de medios con pantallas superiores a 10800p*/

@media (min-width: 1080px) {
    .contenedor_qs {
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;        
        align-items: center;
        text-align: center;
    }
    .titulo_texto{
        margin: 30px 0 10px;
    }
    .texto{
        font-size: larger;
    }
    .contenedor_imagen{
        margin: 0;
        width: 50%;
        align-self: center;
    }
    .contenedor_imagen img{
        width: 100%;
        height: 100%;
        align-self: center;
        justify-self: center;
    }
}

/*Consulta de medios con pantallas superiores a 21600p*/

@media (min-width: 2160px) {
    .texto {
        font-size: x-large;
    }
}
/*
*************************************************************************************
*                                      F O O T E R                                  *
*************************************************************************************
*/

.contenedor_footer {
    background: #000;
    height: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.redes_sociales {
    width: 70%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    border-radius: 15px;
}

.facebook {
    width: 45px;
    cursor: pointer;
}

.instagram {
    width: 45px;
    cursor: pointer;
}

.tiktok {
    width: 45px;
    cursor: pointer;
}

.copyright {
    width: 50%;
    color: #fff;
    text-align: center;
}

/*Consulta de medios con pantallas superiores a 7200p*/

@media (min-width: 720px) {
    .contenedor_footer {
        justify-content: space-around;
        align-items: center;
    }
    .redes_sociales{
        width: 50%;
    }
}

/*
*************************************************************************************
*                                    G A L E R Í A                                  *
*************************************************************************************
*************************************************************************************
*                                      M O D A L                                    *
*************************************************************************************
*/

.modal {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.contenedor_img {
    width: 70vw;
    height: 100vh;
    overflow: hidden;
}

.img_modal {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.boton_cerrar {
    position: absolute;
    top: 25px;
    color: #000;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    font-size: 1.3em;
    cursor: pointer;
}

.flecha_izquierda {
    position: absolute;
    color: #fff;
    left: 10px;
    color: #000;
    background: rgb(130, 130, 130);
    padding: 8px;
    border-radius: 50%;
    font-size: 1.9em;
    cursor: pointer;
    transition: all 0.5s;
}

.flecha_izquierda:hover {
    transform: translateX(-5px);
    background: #fff;
}

.flecha_derecha {
    position: absolute;
    color: #fff;
    right: 10px;
    color: #000;
    background: rgb(130, 130, 130);
    padding: 8px;
    border-radius: 50%;
    font-size: 1.9em;
    cursor: pointer;
    transition: all 0.5s;
}

.flecha_derecha:hover {
    transform: translateX(5px);
    background: #fff;
}

/*
*************************************************************************************
*                              M A I N  G A L E R I A                               *
*************************************************************************************
*/

.main_galeria {
    margin: 25vh 0 0;
}

.titulo_principal_galeria {
    margin: 25px 0 15px;
    font-size: x-large;
    text-align: center;
}

.contenedor_galeria {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 10px;
}

.contenedor_categorias {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.categoria_fotos {
    position: relative;
    width: 33.33%;
    padding: 15px;
    text-align: center;
    border-top-left-radius: 20px;
    cursor: pointer;
    background-color: #8d9ebc;
    box-shadow: #000 -10px 4px 16px, inset -4px 4px 28px;
}

.active {
    background-color: #fff;
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    box-shadow: #000 8px 4px 16px, inset rgb(131, 131, 131) 4px 4px 16px;
    z-index: 1;
}

.fotos_cortes {
    padding: 10px 0 0;
    display: grid;
    gap: 10px;
    overflow: hidden;
}

.fotos_cortes img {
    width: 100%;
    object-fit: contain;
    cursor: pointer;
}

.fotos_tintes {
    padding: 10px 0 0;
    display: grid;
    gap: 10px;
    overflow: hidden;
    display: none;
}

.fotos_tintes img {
    width: 100%;
    object-fit: contain;
    cursor: pointer;
}

.fotos_nails {
    padding: 10px 0 0;
    display: grid;
    gap: 10px;
    overflow: hidden;
    display: none;
}

.fotos_nails img {
    width: 100%;
    object-fit: contain;
    cursor: pointer;
}

.imagen_galeria1 {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.imagen_galeria2, .imagen_galeria3, .imagen_galeria4 {
    grid-row: 1;
}

.imagen_galeria5, .imagen_galeria6, .imagen_galeria7 {
    grid-row: 2;
}

.imagen_galeria8 {
    grid-column: 3 / span 3;
    grid-row: 3 / span 3;
}

.imagen_galeria9, .imagen_galeria10 {
    grid-row: 3;
}

.imagen_galeria11, .imagen_galeria12 {
    grid-row: 4;
}

.imagen_galeria13, .imagen_galeria14 {
    grid-row: 5;
}

img[class^="imagen_galeria"] {
    filter: grayscale(100%);
    transition: all ease-in-out 0.5s;
}

img[class^="imagen_galeria"]:hover {
    filter: none;
    transform: scale(1.05);
    z-index: 3;
}

/*Consulta de medios con pantallas superiores a 7200p*/

@media (min-width: 720px) {
    .main_galeria{
        margin-top: 35vh;
    }
    .contenedor_galeria {
        width: 100%;
    }

    .imagen_galeria8{
        grid-row: 3;
        grid-column: 1;
    }
    .imagen_galeria9{
        grid-row: 3;
        grid-column: 2;
    }
    .imagen_galeria10{
        grid-row: 3;
        grid-column: 3;
    }
    .imagen_galeria11{
        grid-row: 4;
        grid-column: 1;
    }
    .imagen_galeria12{
        grid-row: 4;
        grid-column: 2;
    }
    .imagen_galeria13{
        grid-row: 4;
        grid-column: 3;
    }
    .imagen_galeria14 {
        grid-column: 4 / span 2;
        grid-row: 3 / span 2;
    }
}

/*Consulta de medios con pantallas superiores a 10800p*/

@media (min-width: 1080px) {
    .contenedor_galeria {
        width: 80%;
    }
}

/*Consulta de medios con pantallas superiores a 21600p*/

@media (min-width: 2160px) {
    .contenedor_menu_qs li {
        font-size: x-large;
    }
}
/*
*************************************************************************************
*                              S E R V I C I O S                                    *
*************************************************************************************
*/

.principal_servicios {
    margin: 25vh 0 0;
}

.contenedor_servicios {
    width: 90%;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: #000 -8px 4px 6px;
    border-radius: 25px;
    border: 1px #000 solid;
}
.contenedor_srvs {
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;        
    align-items: center;
    text-align: center;
}

.gif_servicios {
    width: 100%;
    max-height: 400px;
}

.boton_servicios {
    padding: 10px;
    border: none;
    background: #b5dbd2;
    border-radius: 25px;
    font-size: larger;
    cursor: pointer;
}

a.boton_servicios {
    color: #000;
}

/*Consulta de medios con pantallas superiores a 7200p*/

@media (min-width: 720px) {
    .principal_servicios{
        margin-top: 40vh;
    }
    .contenedor_srvs{
        flex-wrap: nowrap;
        flex-direction: row-reverse;
    }
}

/*Consulta de medios con pantallas superiores a 10800p*/

@media (min-width: 1080px) {
    .titulo_servicios{
        padding: 15px;
    }
    .gif_servicios {
        width: auto;
    }
}
/*
*************************************************************************************
*                            A V I S O                                              *
*************************************************************************************
*/

.contenedor_principal_av {
    height: 80vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.boton_aviso {
    padding: 10px;
    border: none;
    background: #b5dbd2;
    border-radius: 25px;
    font-size: larger;
}


/*
*************************************************************************************
*                            C O N T A C T O                                        *
*************************************************************************************
*/

.contenedor_contacto {
    width: 90%;
    height: auto;
    padding: 10px 10px 20px;
    margin-bottom: 20px;
    box-shadow: #000 -8px 4px 6px;
    border-radius: 25px;
    border: 1px #000 solid;
}

/*Consulta de medios con pantallas superiores a 10800p*/

@media (min-width: 1080px) {
    .contenedor_contacto {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 90%;
        height: auto;
        padding: 10px 10px 20px;
        margin-bottom: 20px;
        box-shadow: #000 -8px 4px 6px;
        border-radius: 25px;
        border: 1px #000 solid;
    }
}

/*
*************************************************************************************
*                            F O O T E R  C O N T                                   *
*************************************************************************************
*/

.whatsApp_fixed {
    position: fixed;
    width: 80px;
    left: 0px;
    top: 72vh;
    z-index: 10000;
}

.whatsApp_fixed img {
    width: 100%;
    cursor: pointer;
}

.contenedor_WhatsApp {
    padding: 0;
    width: 180px;
    height: 120px;
    position: fixed;
    top: 57vh;
    left: 0;
    transition: all 1s;
    transform: translateX(-150%);
}

.contenedor_lista_WhatsApp {
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.telefono_WhatsApp {
    width: 110px;
    padding: 9px;
    background-color: rgba(51, 51, 51, 0.8);
    margin: 4px;
    border-radius: 30px;
    list-style: none;
    text-align: center;
    transition: all 1s;
    align-self: flex-end;
}

.telefono_WhatsApp a {
    text-decoration: none;
    color: #fff;
}

.telefono_WhatsApp:hover {
    transform: scale(1.2);
}

.whatsApp_fixed:hover>.contenedor_WhatsApp {
    transform: translateX(0);
}

.llamar_fixed {
    position: fixed;
    width: 50px;
    right: 5px;
    top: 73vh;
    z-index: 10000;
    cursor: pointer;
}

.llamar_fixed img {
    width: 100%;
    cursor: pointer;
}

.contenedor_telefonos {
    padding: 0;
    width: 180px;
    height: 120px;
    position: fixed;
    top: 57vh;
    right: 0;
    transition: all 1s;
    transform: translateX(150%);
}

.contenedor_lista_telefonos {
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.telefono_ciudad {
    width: 110px;
    padding: 9px;
    background-color: rgba(51, 51, 51, 0.8);
    margin: 4px;
    border-radius: 30px;
    list-style: none;
    text-align: center;
    transition: all 1s;
    align-self: flex-end;
}

.telefono_ciudad a {
    text-decoration: none;
    color: #fff;
}

.telefono_ciudad:hover {
    transform: scale(1.2);
}

.llamar_fixed:hover>.contenedor_telefonos {
    transform: translateX(0);
}

.go_up {
    width: 50px;
    height: 50px;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    right: 5px;
    bottom: 5vh;
    font-size: 1.4em;
    background: #7ca7ad51;
    transform: rotate(90deg);
    border-radius: 100%;
    transition: all 0.5s;
    color: #fff;
    z-index: 4;
}

.go_up:hover {
    transform: translateY(-5px) rotate(90deg);
    background: #7ca7ad;
}
/*Consulta de medios con pantallas superiores a 10800p*/

@media (min-width: 1080px){
    .llamar_fixed{
        display: none;
    }
}