@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

html, body {
    width: 100%;
    height: 100vh;
}

@media (min-width: 768px) {
    #menu-button.menu-btn, .side-menu {
      display: none !important;
    }
  }

footer{
    text-align: center;
    color: gray;
    font-weight: 300;
}

/* PARTE SUPERIOR (NAV) */

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    position: relative;
}

@media (min-width: 768px) {
    nav {
        width: 600px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    nav a {
        font-family: "Poppins";
        text-decoration: none;
        font-size: 18px;
        color: #000;
        margin: 10px;
        cursor: pointer;
        position: relative;
        border: none;
        background: none;
        text-transform: uppercase;
        transition: color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    nav a:after {
        content: "";
        pointer-events: none;
        bottom: -2px;
        left: 50%;
        position: absolute;
        width: 0%;
        height: 2px;
        background-color: #0047af;
        transition: width 400ms cubic-bezier(0.25, 0.8, 0.25, 1), left 400ms;
    }

    nav a:hover,
    nav a:focus {
        color: #0047af;
    }

    nav a:hover:after,
    nav a:focus:after {
        width: 100%;
        left: 0%;
    }

    nav a.active {
        color: #0047af;
    }

    nav a.active:after {
        width: 100%;
        left: 0%;
    }
}


img{
    width: 200px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.links{
    position: absolute;
    top: 50%;
    left: 91%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    max-height: 35px;
}
.links-button{
    text-decoration: none;
    color: gray;
    transition: color 0.3s ease-in-out;
}
#face:hover{
    color: #0047af;
}
#insta:hover{
    color: #c6318a;
}
#wpp:hover{
    color: #40ea5f;
}

/* MAPA */

.contact-in{
    width: 80% ;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
    margin-top: 60px;
    margin-bottom: 50px;
}

.contact-map{
    width: 100%;
    height: auto;
    flex: 50%;
}
.contact-map iframe{
    width: 100%;
    height: 100%;
}
.contact-form{
    width: 100%;
    height: auto;
    flex: 50%;
    padding: 30px;
    text-align: center;
}
.contact-h1{
    margin-bottom: 10px;
}

.contact-form-txt{
    width: 100%;
    height: 40px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.contact-form-txt:placeholder{
    color: #aaa;
}
.contact-form-txtarea{
    width: 100%;
    height: 130px;
    color: #000;
    border: 1px solid #000;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.contact-form-txtarea:placeholder{
    color: #aaa;
}

.contact-form-btn{
    color: #fff;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #0047af;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    font-size: 18px;
}