@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    font-family: 'Montserrat';
    height: 100dvh;
   
   display: flex;
   flex-direction: column;
}

header{
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    display: flex;
    padding: 1.4em;
    border-bottom: 2px solid rgb(26, 55, 86);
    margin-bottom: 4%;
    background-color: #000;
    color: white;
}

.logo{
    width: 16%;
    padding: 1% 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img{
    height: 8.4em;
    border-radius: 50%;
    filter: drop-shadow(4px 8px 4px #444);
    border: solid 2px white;
}

.menu-icon {
    display: none;
    font-size: 3.2em;
    color: white;
    cursor: pointer;
    border: solid 2px white;
    border-radius: 16px;
    padding: 0 4px;
}


.container{
    width: 94vw;
    
    border-bottom: 2px solid rgb(26, 55, 86);
    margin: 4px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 2%;
}

.content1, .content2{
    width: 46%;
    height: 14.6em;
    border: 2px solid rgb(26, 55, 86);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}

.content1 h1, .content2 h1{
    font-size: 1.4em;
}
.content1 p{
    color: black;
    
    font-size: 1.2em;
    
    text-align: justify;
    padding: 0 1.4em;
}

.content2 a{
    color: black;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    
}

.content2 i{
    font-size: 1.4em;
}

footer{
    width: 100vw;
    margin-top: 6%;
    bottom: 0;
    left: 0;
    position: relative;
    padding: 1.4em;
    background-color: black;
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 1.6em;
}

footer h4{
    color: white;
}

section{
    width: 60%;
    display: flex;
    margin: 2% auto;
   
    align-items: center;
    justify-content: space-around;
}
section img{
    height: 8.4em;
    border-radius: 50%;
    filter: drop-shadow(4px 8px 4px #444);
    border: solid 2px white;
}

section div{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
    border-bottom: solid 2px white;
    
    
    padding: 1em;
}
section div h3{
    line-height: 1.4em;
}
section h3{
    color: white;

}

.whats{
    bottom: 10%;
    right: 20px;
    position:fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
  
  .whats a{
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    
  }
  
  .whats img{
    height: 80px;
  }

  @media (max-width: 2000px) {
  .menu-icon {
    display: block;
  }
}
@media (max-width: 768px) {

    header{
        justify-content: space-between;
        padding: 2% 8%;
    }
    
    .logo img{
        height: 6.6em;
    }

    .menu-icon{
        font-size: 2.4em;
    }
    .container{
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .content1, .content2{
        height: auto;
        width: 96vw;
        padding: 2%;
    }

    .content2 a{
        font-size: 0.9em;
    }

    section{
        width: 100%;
    }

    section img{
        height: 6.8em;
    }
    
    section h3{
        font-size: 1.2em;
        font-weight: 400;
    }
}