* {
    margin: 0;
    box-sizing: border-box;
    font-family: Century Gothic, CenturyGothic, sans-serif;
}

:root {
    scroll-behavior: smooth;
    --orange: #233ff5;
    --blue: #4848d2;
    --background: #ffffff;
}

body {
    font-family: Century Gothic, CenturyGothic, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px 0;
}

.container--hero {
    padding: 0;
}

/* Menú */

.nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__menu {
    background-color: var(--orange);
    width: 35px;
    cursor: pointer;
    z-index: 100;
    border-radius: 5px;
}

.nav__list {
    position: absolute;
    width: 500px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--blue);
    padding: 80px 0;
    display: grid;
    place-content: center;
    text-align: center;
    gap: 2.5rem;
    list-style: none;
    transform: translate(-100%);
    transition: transform .3s;
}

.nav__list--show {
    transform: translate(0);
}

.nav__link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* hero-main */

.hero__main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero__texts {
    display: grid;
    gap: 1.5rem;
    text-align: center;
    padding-bottom: 70px;
}

.hero__texts h1 {
    font-size: 14px;
}

.hero__texts p {
    font-size: 12px;
}

.hero__cta {
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 1em 3em;

    justify-self: center;
    border-radius: 6px;
}

/* formulario y consulta */


.text {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text input {
    width: 300px;
    height: 45px;
    border: 0;
    border-radius: 0 4px 4px 0;
    border-left: 3px solid blue;
    margin-bottom: 25px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.text button {
    width: 135px;
    height: 45px;
    border: none;
    margin: 10px;
    border-radius: 5px;
    color: white;
    font-weight: 400;
    font-weight: bold;
    background: rgb(0, 212, 255);
    background: linear-gradient(90deg, rgba(0, 212, 255, 1) 0%, rgba(9, 9, 121, 1) 100%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
}


.form {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inputs1 {
    width: 340px;
    height: 320px;
    display: flex;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 3px solid blue;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.inputs1 input {
    width: 320px;
    height: 45px;
    border: 0;
    border-radius: 0 4px 4px 0;
    margin-bottom: 7px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.063);
}

    input:disabled {
        cursor: default;
        background-color: transparent;
        color: black;
        font-weight:bold;
        border-color: rgba(118, 118, 118, 0.3);
    }

.inputs2 {
    width: 320px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.inputs2 input {
    width: 155px;
    margin-right: 0px;
}

.ghs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ghs p {
    margin: 7px;
    font-size: 10px;
}

.ghs button {
    width: 100px;
    height: 35px;
    border-radius: 7px;
    background-color: white;
    border: 1px solid gray;
    cursor: pointer;
}

.ghs button:hover {
    background-color: rgba(188, 188, 252, 0.734);
    transition: all 0.3 ease 0s;
}

/* about */

.about {
    background-color: var(--background);
}

.about__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about__texts {
    text-align: center;
    display: grid;
    gap: 1.5rem;
}

/* footer */

.footer {
    background-color: var(--background);
}

.footer p {
    text-align: center;
}

.copy {
    width: 99%;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.copy p {
    font-size: 11px;
    margin: 5px;
}


@media (min-width: 900px) {


    * {
        margin: 0;
        box-sizing: border-box;
        font-family: Century Gothic, CenturyGothic, sans-serif;
        
    }

    .nav__menu {
        display: none;
    }

    .nav__list {
        position: static;
        background-color: transparent;
        padding: 0;
        display: flex;
        gap: 2rem;
        list-style: none;
        transform: unset;
        transition: none;
    }

    .nav__list--show {
        transform: unset;
    }

    .nav__link {
        color: var(--orange);
    }

    /* hero-main */

    .hero__main {
        flex-direction: row;
        text-align: center;
        justify-content: center;
        gap: 40px;
        min-height: auto;
    }

    .hero__texts {
        width: auto;
        gap: 2rem;
        margin: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
    }
    
    input:disabled {
        cursor: default;
        background-color: transparent;
        color: black;
        font-weight:bold;
        border-color: rgba(118, 118, 118, 0.3);
    }

    .hero__cta {
        justify-self: start;
    }

    .hero__texts h1 {
        font-size: 25px;
    }

    .hero__texts p {
        width: 60%;
        font-size: 14px;
    }


    /* formulario y consulta */


    .text {
        width: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .text input {
        width: 300px;
        height: 45px;
        border: 0;
        border-radius: 0 4px 4px 0;
        border-left: 3px solid blue;
        margin-bottom: 25px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .text button {
        width: 135px;
        height: 45px;
        border: none;
        border-radius: 5px;
        color: white;
        font-weight: 400;
        font-weight: bold;
        background: rgb(0, 212, 255);
        background: linear-gradient(90deg, rgba(0, 212, 255, 1) 0%, rgba(9, 9, 121, 1) 100%);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        cursor: pointer;
    }

    .form {
        width: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .inputs1 {
        width: 390px;
        height: 320px;
        display: flex;
        border-radius: 5px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-left: 3px solid blue;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    .inputs1 input {
        width: 350px;
        height: 45px;
        border: 0;
        border-radius: 0 4px 4px 0;
        margin-bottom: 7px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.063);
    }

    .inputs2 {
        width: 350px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .inputs2 input {
        width: 170px;
        margin-right: 0px;
    }

    .ghs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ghs p {
        margin: 7px;
        font-size: 10px;
    }

    .ghs button {
        width: 100px;
        height: 35px;
        border-radius: 7px;
        background-color: white;
        border: 1px solid gray;
        cursor: pointer;
    }

    .ghs button:hover {
        background-color: rgba(188, 188, 252, 0.734);
        transition: all 0.3 ease 0s;
    }

    /* about */

    .about {
        margin: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    /* footer */

    .footer {
        text-align: center;
        padding: 0;
    }

    .copy {
        width: 99%;
        font-size: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center
    }

    .copy p {
        font-size: 12px;
        margin: 5px;
    }

}