* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Cabeçalho */
.topo {
    background: #0066ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    color: white;
}

.topo .logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
}

.topo .logo img {
    height: 25px;
    margin-right: 8px;
}

.topo nav a,
.topo .acoes a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}
/* TÍTULOS */
h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #0056ff;
    margin-bottom: 20px;
  }
  
  /* QUEM SOMOS */
  .quem-somos {
    padding: 50px 20px;
    text-align: center;
  }
  .quem-somos .conteudo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .quem-somos p {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    border: 2px solid #0056ff;
    border-radius: 15px;
    padding: 20px;
    color: #333;
  }
  .carro {
    width: 250px;
    height: auto;
  }
  .carro.esquerda {
    margin-right: 10px;
  }
  .carro.direita {
    margin-left: 10px;
  }
  
  /* LOCALIZAÇÃO */
  .localizacao {
    padding: 50px 20px;
    text-align: center;
  }
  .localizacao .mapa {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .localizacao iframe {
    border: 3px solid #0056ff;
    border-radius: 15px;
  }

    /* Rodapé */
    footer {
        background: #0056d6;
        padding: 40px 20px;
    }
    
    .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .footer-logo img {
        height: 40px;
        margin-bottom: 10px;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
    }
    
    .footer-links h3 {
        color: #ffff;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .footer-links a, .footer-links p {
        color: #ffff;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 5px;
    }
    