@font-face {
    font-family: "Open Sans ExtraBold";
    src: url(../fonts/OpenSans-ExtraBold.ttf) format("truetype");
}

@font-face {
    font-family: "Quicksand";
    src: url(../fonts/Quicksand.ttf) format("truetype");
}

html, body { 
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    color: hsl(0, 0%, 20%);
}

#nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    background-color: #F35D3A;
    box-shadow: rgba(25, 28, 31, 0.04) 0px 8px 16px, rgba(25, 28, 31, 0.04) 0px -1px 0px;
}

#nav a {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    text-decoration: none;
    user-select: none;
    color: white;
    margin: auto 6vw;
}

#nav a:hover{
    color: black;
}

.logo {
    height: 80vh;
    background-color: #F35D3A;
}

.logo img {
    display: block;
    margin: 0 auto; 
    padding: 20vh 0;
    max-width: 75%;
}

#sobre-nosotros, #servicios, #contacto {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 20vh 10vh;
    width: 60vw;
}

#sobre-nosotros h1, #servicios h1, #contacto h1{
    font-family: 'Open Sans ExtraBold';
    text-decoration: underline solid #F35D3A;
    margin-top: -90px;
    padding-top: 90px; 
    font-size: 2.7rem;
    margin-bottom: 2vh;
}

ul li{
    background-image: url('../img/icons/arrow.png');
    background-repeat: no-repeat;
    background-position: left;
    background-size: 12px;
    padding-left: 24px;
    margin-left: 40px;
    line-height: 2;
}    

#servicios h2 {
    font-family: 'Quicksand Bold', sans-serif;
    font-size: 20px;
    margin-bottom: 1vh;
}

/* ——ESTILO DE LA SECCION CONTACTO—— */
#contacto {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color:#F35D3A;
    color: white;
    margin: auto;
    padding-top: 5vh;
    padding-bottom: 5vh;
    width: 100%;
}

#contacto h1 {
    width: 100%;
    text-align: center;
}

#contacto #telefonos {
    display: flex;
}

#contacto #telefonos div {
    text-align: center;
    margin: auto;
}

#contacto a {
    color: white;
    text-decoration: underline dotted rgba(255,255,255,0.5);
}

#contacto #iconos {
    margin: 0;
}

#iconos {
    display: flex;
    margin: auto;
}

#iconos svg {
    margin: 0 20px 0 20px;
    fill: white;
}

#iconos svg:hover {
    filter: invert();
}

#contacto iframe {
    margin: 10px 20px;
    box-shadow: rgba(25, 28, 31, 0.15) 0px 8px 24px, rgba(25, 28, 31, 0.04) 0px -1px 0px;
}

#whatscel {
    display: none;
    visibility: hidden;
}

@media (max-width: 768px) {
    #nav > a{
        font-family: 'Quicksand Bold', sans-serif;
        font-size: 16px;
        margin: auto auto;
    }
    .logo {
        height: 100vh;
        width: 100%;
    }
    .logo > img {
        position: relative;
        top: 25%;
    }
    #sobre-nosotros, #servicios {
        font-size: 18px;
        margin: 15vh auto;
        width: 85vw;
    }
    #contacto #telefonos div {
        margin: auto;
    }
    #whatscel {
        display: inline;
        visibility: visible;
    }
    #whatspc {
        display: none;
        visibility: hidden;
    }
    iframe {
        display: none;
        visibility: hidden;
    }
}
