@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

header {
    font-family: "Montserrat", serif;
    background-image: url(../img/Inicio/slider\ .png);
    background-attachment: fixed;
    /* Efecto Parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 600px;
}

nav {
    display: flex;
    justify-content: space-around;
    margin: 0 10em;
}

nav .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
}

nav .logo img {
    width: 40%;
}

nav .links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

nav .links ul {
    display: flex;
    padding: 0;
}

nav .links ul li {
    padding: 1em;
    color: aliceblue;
    font-weight: 700;
    font-size: 15px;
}

nav .btn_starlink {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;

}

nav .btn_starlink .btn {
    background-color: aliceblue;
    padding: .5em .5em .5em 1em;
    width: 100px;
    border-radius: 10px;
}


nav .btn_starlink .btn img {
    width: 100%;
}

.content_header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10em;
}

.content_header .text_c {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 2em 10em;
}

.content_header .text_c h4 {
    color: #0080FF;
    font-weight: 800;
    font-size: 17px;
}

.content_header .text_c p {
    color: aliceblue;
    font-size: 17px;
    font-weight: 800;
}

.content_header .text_c p span {
    color: #0080FF;
}

.content_header .text_c h3 {
    color: aliceblue;
    font-size: 30px;
}

.content_header .text_c h3 span {
    color: #0080FF;
}

.parf {
    margin-top: 0;
    margin-bottom: 2em;
}

.content_header .img_c {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle {
    display: none;
}

.toggle i {
    font-size: 2em;
    color: #ffffff;
}

@media (max-width: 800px){
    header {
        background-position: 60%;
        height: 650px;
    }

    nav {
        justify-content: space-between;
        margin: 0 1em .4em 1em;
        padding: .4em;
    }

    nav .logo {
        width: 30%;
    }

    nav .logo img {
        width: 100%;
    }

    nav .links {
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #ffffff;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    
    nav .links ul {
        display: flex;
        padding: 0;
    }
    
    nav .links ul li {
        padding: 1em;
        color: #2B2B2B;
        font-weight: 700;
        font-size: 15px;
    }

    .toggle {
        display: block;
        width: 10%;
        display: flex;
        justify-content: end;
    }

    .links.active {
        height: 320px;
    }

    .links ul {
        flex-direction: column;
        text-align: center;
    }

    .links ul li {
        margin: 15px 0;
    }

    nav .btn_starlink {
        width: 30%;
    }
    
    nav .btn_starlink .btn {
        padding: .3em .2em .3em 1em;
        width: 90px;
        border-radius: 8px;
    }
    
    nav .btn_starlink .btn img {
        width: 95%;
    }

    .content_header {
        display: flex;
        flex-direction: column;
        margin: 0 1.1em;
    }
    
    .content_header .text_c {
        width: 100%;
        padding: 0;
    }
    
    .content_header .text_c h4 {
        color: #0080FF;
        font-weight: 800;
        font-size: .5em;
    }
    
    .content_header .text_c p {
        font-size: .8em;
        font-weight: 700;
    }
    
    .content_header .text_c h3 {
        font-size: 1.6em;
    }
    
    .parf {
        margin-bottom: 1em;
    }
    
    br{
        display: none;
    }

    h3{
        margin-bottom: 1em;
    }

    .content_header .img_c {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content_header .img_c img{
        width: 90%;
    }
}