.rent-hero {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.rent-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.rent-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.rent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.rent-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.rent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.rent-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.rent-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rent-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.rent-card-body p {
  flex: 1;
  color: #555;
}

.rent-card-btn {
  margin-top: 16px;
  align-self: flex-start;
  background: #f4b400;
  color: #000;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease;
}

.rent-card-btn:hover {
  background: #e2a800;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px) {
  .rent-card-image img {
    height: 180px;
  }
}

.rent-hero {
    position: relative;
    text-align: center;
    padding: 60px 20px 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  }

.travel-title {
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(2.8rem, 7.5vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -1.2px;
    color: white;
    margin: 0 0 0.4em;
    line-height: 1.05;
    text-shadow: 0 6px 20px rgba(0,0,0,0.5);
    background: linear-gradient(90deg, #ffffff, #e0f2fe, #ffffff, #a5f3fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: shine 7s linear infinite;
}

.hero-subtitle {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.45rem);
    color: #dbeafe;
    margin: 1rem 0 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
  }
  @keyframes shine {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }

  @keyframes floatIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Fondo sutil de brillo */
  .rent-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.07) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse 14s infinite alternate;
  }

  @keyframes pulse {
    0% { opacity: 0.35; transform: scale(1); }
    100% { opacity: 0.12; transform: scale(1.3); }
  }