/* Reset de estilos */
html{
    
    margin: 0;
    padding: 0;
  }
  
  /* Estilos globais */
  
  .logo{
    position: absolute;
    top: 15px;
    left: 1px;
    width: 35%;
  }
  body {
    background-repeat: no-repeat;
    background-size: 1366px 620px;
    font-family: Arial, sans-serif;
    
  }
  
  /* Estilos do cabeçalho */
  header {
    transform: translateY(-15px);
    width: 98%;
    background-color: #ff5500;
    color: #fff;
    padding: 15px;
 
  }
  
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    display: inline-block;
    margin-right: 10px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  /* Estilos do banner */
  .banner {
    background-image: url("caminho_da_imagem.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding: 100px;
  }
  
  .banner-content {
    
    padding: 100px 10% 300px 20%;
    margin: 0 auto;
  }
  
  .banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .banner p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .button {
    display: inline-block;
    background-color: #ff5500;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
  }
  