* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f2a7c1; /* rosa claro */
    display: flex;
    justify-content: center;
    color: #214f7c;
  }
  
  .container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
  }
  
  /* Menu de navegacao */
  .menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .menu button {
    background-color: #214f7c;
    color: #f2a7c1;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .menu button:hover {
    background-color: #2c5b8c;
    color: white;
  }
  
  /* Alternancia de secoes */
  .secao-ativa {
    display: block;
  }
  
  .secao-inativa {
    display: none;
  }
  
  /* Imagem do app */
  .app-image {
    width: 160px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(33, 79, 124, 0.3);
  }
  
  /* Secao passageiro */
  .descricao h1 {
    font-size: 2.8em;
    color: #214f7c;
    margin-bottom: 10px;
  }
  
  .descricao p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 10px;
  }
  
  /* Rodape e icones */
  .redes-sociais {
    margin-top: 30px;
    background-color: #214f7c;
    padding: 15px 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
  
  .icone {
    margin: 0 15px;
    color: #f2a7c1;
    font-size: 2.2em;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .icone:hover {
    color: #fff;
    transform: scale(1.2);
  }
  
  /* Secao motorista */
  #motorista {
    background-color: #f2a7c1;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(33, 79, 124, 0.1);
    text-align: center;
    color: #214f7c;
  }
  
  #motorista h2 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  
  .botoes-motorista {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .botao-download,
  .botao-cadastro {
    background-color: #214f7c;
    color: #f2a7c1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .botao-download:hover,
  .botao-cadastro:hover {
    background-color: #2c5b8c;
    color: white;
  }
  
  #motorista p {
    background: rgba(255, 255, 255, 0.3);
    padding: 15px;
    border-radius: 10px;
  }
  