@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;
}

html, body {
    font-family: "Poppins";
}

@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%;
    }

    /* SOBRE NÓS */

    .container {
        position: relative;
        width: 90%;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 30px 40px 30px;
        border: 2px solid #0047af;
        backdrop-filter: blur(20px);
        border-radius: 15px;
        top: 45%;
        left: 31%;
        margin-top: 20px;
        margin-bottom: 50px;
        transform: translate(-50%, -50%);
        transform: scale(1);
        transition: transform 0.3s ease-in-out;
    }
    .container:hover{
        transform: scale(1.05);
    }
    
    h2{
        color: #ca1b22;
        margin-bottom: 15px;
    }
    
    p{
        color: black;
    }
}

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{
    color: gray;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
#face:hover{
    color: #0047af;
}
#insta:hover{
    color: #c6318a;
}
#wpp:hover{
    color: #40ea5f;
}