body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .containerHome {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  input, button {
    padding: 10px;
    font-size: 16px;
    flex: 1;
  }
  
  button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  .resultados {
    margin-top: 50px;
  }
  
  .passage {
    padding: 10px;
    background: #e9ecef;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  header {
    background-color: #0077cc;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1.8em;
    font-weight: bold;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  .hero {
    background: url('https://source.unsplash.com/1600x600/?travel') no-repeat center center/cover;
    color: #DAA520;
    padding: 30px 10px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3em;
    margin-bottom: 5px;
  }
  
  .hero p {
    font-size: 1.5em;
    margin-bottom: 5px;
  }
  