/* General */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
  }
  
  /* Header */
  header {
    background-color: #ffde59;
    padding: 30px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .header-content {
    text-align: center;
  }
  
  .logo {
    width: 80px;
    margin-bottom: 10px;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  header p {
    font-size: 1.1rem;
    color: #444;
  }
  .btn-mapa {
font-weight: bold;
margin-top: 20px;
  }
  
  /* Guía */
  .guide h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #222;
    border-bottom: 2px solid #ffde59;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .step {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .step img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
  }
  
  .step p {
    font-size: 1rem;
    text-align: center;
    color: #444;
  }
  
  /* Links */
  a {
    color: #0077cc;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    background-color: #f1f1f1;
    padding: 20px 0;
    align-items: center;
    margin-top: 50px;
    text-align: center;
    font-size: 0.6rem;
    color: #777;
  }
  
  footer a {
    color: #444;
  }
  
  footer a:hover {
    color: #000;
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .step {
      flex-direction: row;
      gap: 20px;
      align-items: center;
      text-align: left;
    }
  
    .step img {
      width: 250px;
      flex-shrink: 0;
    }
  
    .step p {
      flex: 1;
      font-size: 1.05rem;
    }
  }
  