#tours {
    padding: 1rem 2rem;
    background-color: #fefefe;
    font-family: 'Inter', sans-serif;
  }

  #tours h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
  }

  .tours-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
    /* background-color: yellow; */
    justify-content: center;
    
  }

  .tour-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 300px;
  }

  .tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  }

  .tour-card img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-bottom: 1px solid #e5e7eb;
  }

  .tour-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .tour-location {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0.5rem;
  }

  .tour-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin:0px
  }

  .tour-meta {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .tour-button {
    align-self: flex-start;
    background: #2563eb;
    color: white;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .tour-button:hover {
    background: #1d4ed8;
  }
  .tour-descripcion{
    font-size: 0.8rem; 
    color: #4b5563; 
    margin-bottom: 1rem;
    text-align: justify;
  }