* {
    z-index:10;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: azure;
}

header {
  width: 100%;
  height: 100px;
  background-color: #023e8a;
  padding: 0px;
  display: flex;
  flex-wrap: flex;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.perfil {
    display: flex;
    flex-direction: row-reverse;
    width: 500px;
    align-content: center;
}

.perfil img {
    transform: scale(0.8,0.8);
}

.perfil h3 {
    align-self: center;
    margin-right: 10px;
    color: white;
}

.menu img{
    width: 60px;
    object-fit: contain;
    margin-right: 10px;
}

.menu{
    display: flex;
    flex-direction: row-reverse;
    
}

.menu h3{
    margin-top: 40px;
    margin-right: 10px;
    color: aliceblue;
}
.fundo1{
    width: 100%;
    height: 100%;
    display: flex;
    transform: translateX(-27vh);
}
.fundogradiente{
position: absolute;
width: 1440px;
height: 1095px;
left: -1px;
top: -5px;

background: linear-gradient(90deg, #023d8aeb 5.83%, rgba(0, 0, 0, 0.25) 31.58%, rgba(217, 217, 217, 0) 51.6%);
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    z-index:9;
}

.texto1{
    
display: flex;
position: absolute;
width: 791px;
height: 310px;
left: 10px;
top: 700px;
font-weight: 800;
font-size: 50px;
line-height: 155px;
color: aliceblue;
}

.texto2 {
    display: flex;
    margin-right: 5px;
    justify-content: center;
    text-align:center;
    font-size: 30px;
    color: rgb(0, 0, 0);
}

.hr{
display: flex;
margin: 0 auto;
width: 600px;
height: 0px;
border: 1.2px solid #000000;
border-radius:50px;
}

.texto3 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    color: rgb(0, 0, 0);
}

.container{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0px 20px 0px 20px;
    justify-content: center;
    display: grid;
    grid-gap:0px;
    grid-row-gap: 30px;
    grid-template-areas:
     "item item item";
    }

.item{
   border-style:solid;
   border-color: rgb(0, 0, 0);
    display: flex;
    grid-area:"item";
    background-color: #0086ce;
    width: 250px;
    height: 100px;
    text-align: center; 
   
}
  .item div{ 
 padding: 10px;
    color: aliceblue;
    background-color: black;
    width:100%;
    height:40px;
   

  }
