* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui;
  background-color:#FAF9F6;
  background-size: cover;       
  background-position: center;  
  height: 100vh;            
    
}

.menu {
  position: fixed;
   z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1E1E1E;
  padding: 10px 20px;
  width: 100%;
  height:10%;
} 

.menu ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
}

.menu li {
  letter-spacing: 3px;
  margin-left: 32px;
  color: white;
}

.menu a {
  text-decoration: none;
  padding: 2px;
  color: white;
}

.menu a:hover {
  color: #FF0000 ;
}

.menu img {
  margin-top: 7px;
  margin-left:50px;
  height: 72px;
  width: 250px;
}

#info {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

#info .img-info img {
  position: absolute;
 top:0; right:0; bottom:0; left:0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.backdrop {
  position: absolute;
  top:0; right:0; bottom:0; left:0;                        
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);        
  z-index: 1;
  display: flex;                     
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.backdrop .title {
  color: #FF0000;
  font-size: 55px;
}

.backdrop .h2 {
  color: #F5F5F5;
  font-size: 22px;
  line-height: 1.4;
  font-weight:600;
}

#servicos {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100%; 
 background-color: rgba(240, 240, 240, 0.6);
}

#servicos .h3{
  font-size: 40px;
  color:#1E1E1E;
  align-items: top; 
  padding-top:8%;
  padding-left: 30%;
  padding-right: 20%;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100vh;
}


.card {
  width: 300px;
  height: 500px;
  margin-top: 30px;
  background: #FF0000;
  color: white;
  border-radius: 10px;
  text-align: center;
}

.card figcaption{
  margin-top:14%;
  font-size: 20px;
}