@import url('https://fonts.googleapis.com/css2?family=Arsenal+SC:ital,wght@0,400;0,700;1,400;1,700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Arsenal SC", sans-serif;
    font-style: normal;
    margin: 0;
}

h1 {
    font-size: 4em;
}

h2 {
    font-size: 2.7em;
}

h3 {
    font-size: 2em;
}

p {
    font-size: 1.25em;
}

ul {
    list-style: none;
}

li {
    font-size: 1.25em;
}

a {
    text-decoration: none;
}

.acent-color {
    color: aquamarine;
}

.gradient-text {
    font-weight: bold;
    font-size: large;
    background: linear-gradient(90deg, rgb(0, 60, 150), rgb(131, 2, 136));
    color: transparent;
    background-clip: text;
}


button {
    align-items: center;
    background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: "Arsenal SC", sans-serif;
    font-size: 20px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
}

button:active,
button:hover {
    outline: 0;
}

button span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 0.4s;
}

button:hover span {
    background: none;
}


.container {
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
}


.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: -1;
}


.logo img {
    height: 10rem;
    transition: 0.4s ease;
}

.logo img:hover {
    background-size: 190px;
    transform: scale(1.1);
}

.navbar a {
    font-size: 1.15rem;
    color: aliceblue;
    font-weight: 500;
    margin-left: 2.5rem;
}

.navbar a:hover {
    color: turquoise;
    transition: 0.4s;
}


#check {
    display: none;
}

.iconos {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/*BREACKPOINT - NAVBAR*/

@media (max-width: 1000px) {
    .header {
        padding: 1.3rem 5%;
    }
}

@media (max-width: 850px) {
    .iconos {
        display: inline-flex;
    }

    #check:checked~.iconos #menu-icon {
        display: none;
    }

    .iconos #close-icon {
        display: none;
    }

    #check:checked~.iconos #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: #111111bd;
        overflow: hidden;
        transition: 0.3s ease;
    }

    #check:checked~.navbar {
        height: 13.7rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: 0.3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(0.15s * var(--i));
    }
}

#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    color: lightcyan;
    background-image: linear-gradient(0deg,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)), url('images/studio-portrait-beautiful-young-man-posing.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

#hero h1 {
    animation: mover-izquierda-derecha 2s 1;
    animation-fill-mode: forwards;

}

@keyframes mover-izquierda-derecha {
    from {
        transform: translateX(-700px);
    }

    to {
        transform: translateX(0px);
    }
}

/*Ventana Modal*/

.modal,
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111111bd;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.modal.show,
.contact-modal.show {
    opacity: 1;
    pointer-events: unset;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

.contact-modal .modal_container {
    margin: auto;
    width: 80%;
    max-width: 600px;
    max-height: 90%;
    background-color: aliceblue;
    border-radius: 6px;
    padding: 3em 2.5em;
    display: grid;
    gap: 1em;
    place-items: center;
    grid-auto-columns: 100%;
    transform: translateY(-100vh);
    transition: transform 0.8s ease 0.8s;
}

.contact-modal.show .modal_container {
    transform: translateY(0);
    transition: transform 0.8s ease;
}


.contact-modal_img {
    width: 60%;
    max-width: 190px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgb(0, 0, 0.5);
}

form .grupo {
    position: relative;
    margin: 20px;
}

input,
textarea {
    background: none;
    color: #c6c6c6;
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #49454567;
    resize: none;
}

input:focus,
textarea:focus {
    outline: none;
    color: rgb(94, 93, 93);
}

.modal_label {
    position: absolute;
    top: -14px;
    padding-top: 7px;
    font-size: 13px;
    color: #2196F3;
}

input:focus~.barra::before,
textarea:focus~.barra::before {
    width: 100%;
}

.barra {
    position: relative;
    display: block;
    width: 100%;
}

.barra::before {
    content: '';
    height: 2px;
    width: 0%;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, rgb(102, 5, 146), rgb(64, 219, 224));
    transition: 0.4s ease all;
    left: 0%;
}

.modal_container button {
    margin-left: 78px;
}

.close {
    color: #2196F3;
    float: right;
    font-size: 25px;
    transition: 0.4s;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/*:::Fin Ventana Modal:::*/

#injerto-capilar {
    background-color: rgb(30, 30, 30);
    color: lightcyan;
    text-align: center;
}

#injerto-capilar .container {
    padding: 50px 0;
}

#injerto-capilar h2 {
    margin: 0px;
    font-size: 3em;
    color: lightcyan;
    padding-bottom: 30px;
}

#injerto-capilar p {
    display: inline-flex;
}

#injerto-capilar .carta {
    background-repeat: no-repeat;
    padding: 35px;
    margin: 25px;
    border-radius: 25px;
    background-size: 100% 180px;
    background-position-y: 0;
    background-color: rgb(41, 41, 41);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.carta:first-child {
    background-image: linear-gradient(0deg,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)), url('images/tecnicatfue.jpg');
}

.carta:nth-child(2) {
    background-image: linear-gradient(0deg,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)), url('images/eyeform.jpg');
}

.carta:nth-child(3) {
    background-image: linear-gradient(0deg,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)), url('images/vission.jpg');

}

#injerto-capilar button {
    font-size: 16px;
    margin: 10px auto;
    display: none;  
}


#freq-question {
    background-color: rgb(255, 255, 255);
}


.contenedor-acordeon {
    width: 90%;
    margin: 50px;
    padding-right: 50px;
}

.contenedor-acordeon h2 {
    text-align: start;
    margin-bottom: 40px;
}

.acordeon label {
    display: block;
    padding: 20px;
    font-size: 20px;
    background: #1c1c1c;
    color: #fff;
    cursor: pointer;
    margin-bottom: 2px;
    border-radius: 15px;
}

.acordeon label:hover {
    background: #2e2e2e;
}

.acordeon .contenido-acordeon {
    padding: 0px;
    margin: 0px 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.9s ease;
}

.btn-acordeon:checked~.contenido-acordeon {
    max-height: 600px;
    padding: 15px 0px;
}

.btn-acordeon {
    display: none;
}

#porque-elegirnos {
    background-color: rgb(255, 255, 255);
}

#porque-elegirnos .container {
    text-align: center;
    padding: 200px 12px;
}


#contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 100vh;
    background-color: rgb(30, 30, 30);
    color: aliceblue;
}

#contact h2 {
    font-size: 5vw;
}

#contact button {
    font-size: 4vw;
}

.btn-wsp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #0df053;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    line-height: 60px;
    font-size: 35px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: 0.5s;
}

.btn-wsp:hover {
    color: #0df053;
    background: #fff;
    transform: scale(1.1);
}

footer {
    background: linear-gradient(90deg, rgb(102, 5, 146), rgb(64, 219, 224));
    color: rgb(30, 30, 30);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer img {
    height: 200px;
    width: 200px;
    margin-top: 50px;
    margin-left: 100px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgb(0, 0, 0.5);
    transition: .4s;
}


footer .icons i {
    text-align: center;
    font-size: 30px;
    border-radius: 50%;
    color: rgb(20, 20, 20);
    margin: 20px;
    padding: 15px;
    box-shadow: 0 5px 10px rgb(0, 0, 0, .35);
    transition: .4s;
}

iframe {
    height: 400px;
    border: none;
    box-shadow: 0 0 15px rgb(0, 0, 0.5);

}

.links a {
    margin-left: 80px;
    color: aliceblue;
    font-weight: bold;
}

footer p {
    font-weight: bold;
    margin-left: 100px;
}





@media (min-width: 720px) {

    #injerto-capilar h2 {
        font-size: 4em;
    }

    #freq-question .container {
        text-align: initial;
    }

    #porque-elegirnos .container {
        display: flex;
        justify-content: space-evenly;
    }

    #porque-elegirnos .gradient-text {
        width: 50%;
        max-width: 600px;
        text-align: initial;
        padding-left: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    #porque-elegirnos .img-container {
        background-image: url("images/perdidacabello.jpg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        height: 500px;
        width: 53%;
        border-radius: 20px;
        box-shadow: 0 0 15px indigo;
        transition: 0.4s;
    }


    #contact h2 {
        font-size: 4em;
    }

    #contact button {
        font-size: 2em;
    }

    footer img:hover {
        transform: scale(1.1);

    }

    footer .icons i:hover {
        transform: scale(1.1);
        transition: .4s;
    }

}


@media(min-width: 800px) {

    #injerto-capilar .tarjetas {
        display: flex;
        justify-content: center;
    }

    #injerto-capilar p {
        display: block;
        margin-bottom: 40px;
        margin-top: 80px;
    }

    #injerto-capilar h3 {
        margin-top: 3%;
    }

    #injerto-capilar .carta {
        width: 33%;
        padding: 29px;
        background-size: 100% 160px;
        background-position-y: 0;
        background-color: rgb(41, 41, 41);
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }




}