/* ===== RENTILES - STYLES GLOBAUX ===== */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Raleway:wght@700;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #FFFFFF;
  color: #111111;
}

/* ===== HEADER ===== */
.header-top {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 3px solid #111111;
  overflow: hidden;
  background: linear-gradient(135deg, #111111 50%, #2563EB 100%);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #111111;
  line-height: 1;
  letter-spacing: -1px;
}
.logo-name span { color: #2563EB; }
.logo-tagline { font-size: 0.78rem; color: #6B7280; margin-top: 2px; }

.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.btn-reservations {
  background: #FF690F;
  color: #fff;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.btn-reservations:hover { background: #E55A00; }
.phone-block { text-align: right; }
.phone-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FF690F;
  display: flex; align-items: center; gap: 6px;
}
.phone-number svg { width: 20px; height: 20px; fill: #FF690F; }
.phone-note { font-size: 0.7rem; color: #6B7280; }

/* ===== NAV ===== */
.main-nav {
  background: #FF690F;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.main-nav a:hover, .main-nav a.active { background: rgba(0,0,0,0.2); }
.main-nav a.home-icon { font-size: 1.1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #a8d5e8 0%, #7bc8e0 30%, #5ab5d3 60%, #3a9fc0 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 20px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 100%, rgba(255,220,150,0.4) 0%, transparent 50%),
    linear-gradient(180deg, #7dd0e8 0%, #5bbcd8 40%, #f5c97a 80%, #e8b560 100%);
}
.hero-palms {
  position: absolute; left: 0; top: 0; height: 100%; width: 280px;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=300') center/cover no-repeat;
  opacity: 0.5;
  -webkit-mask: linear-gradient(to right, black 60%, transparent 100%);
  mask: linear-gradient(to right, black 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.hero-text { flex: 1; }
.hero-text h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: #111111;
  text-shadow: 1px 1px 3px rgba(255,255,255,0.5);
  line-height: 1.2;
}
.hero-text p { color: #111111; font-size: 1rem; margin-top: 6px; font-weight: 600; }
.hero-car {
  position: absolute; left: 200px; bottom: 0;
  width: 380px;
}
.hero-car img { width: 100%; }

/* ===== BOOKING BOX ===== */
.booking-box {
  background: #111111;
  border-radius: 10px;
  padding: 20px 24px;
  min-width: 400px;
  max-width: 420px;
  color: #fff;
  position: relative; z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.booking-box h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  text-align: center; margin-bottom: 14px;
}
.booking-stars { display: flex; justify-content: flex-end; align-items: center; gap: 4px; margin-bottom: 10px; }
.stars { color: #f4c430; font-size: 1.1rem; }
.rating-text { font-size: 0.8rem; color: #cdd; }

.booking-row { display: flex; gap: 10px; margin-bottom: 10px; }
.booking-field { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.booking-field label { font-size: 0.78rem; font-weight: 700; color: #8bc4e8; }
.booking-field input,
.booking-field select {
  width: 100%; padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: #fff;
  color: #111111;
  font-size: 0.88rem;
}
.booking-field input[type="text"] { background: #fff; }
.checkbox-row { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; margin-bottom: 4px; }
.checkbox-row input { width: auto; }
.btn-search {
  width: 100%;
  background: #FF690F;
  color: #fff;
  border: none;
  padding: 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 1px;
  margin-top: 12px;
  transition: background 0.2s;
}
.btn-search:hover { background: #E55A00; }

.booking-stats {
  display: flex; gap: 16px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
  justify-content: space-around;
}
.stat { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: #2563EB; line-height: 1; }
.stat-label { font-size: 0.7rem; color: #9CA3AF; margin-top: 2px; }

/* ===== SECTION DESTINATIONS ===== */
.section-title {
  text-align: center;
  padding: 30px 20px 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FF690F;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 16px auto 30px;
  padding: 0 20px;
}
.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dest-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; }
.dest-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,50,0.75));
  padding: 30px 16px 14px;
  display: flex; align-items: center; gap: 10px;
}
.dest-icon {
  width: 36px; height: 36px;
  background: #FF690F;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dest-icon svg { width: 20px; height: 20px; fill: #fff; }
.dest-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.dest-name { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.1rem; color: #2563EB; }

/* ===== AVANTAGES ===== */
.avantages-section {
  background: #111111;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
.avantages-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem; margin-bottom: 24px; color: #fff;
}
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.avantage { text-align: center; }
.avantage-icon { font-size: 2.2rem; margin-bottom: 8px; }
.avantage h3 { font-size: 0.95rem; font-weight: 700; color: #2563EB; margin-bottom: 4px; }
.avantage p { font-size: 0.8rem; color: #9CA3AF; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 30px 20px; max-width: 1000px; margin: 0 auto; }
.how-section h2 { font-family: 'Raleway', sans-serif; font-size: 1.4rem; color: #111111; text-align: center; margin-bottom: 24px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.step-num {
  width: 48px; height: 48px;
  background: #FF690F;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  margin: 0 auto 10px;
}
.step h3 { font-size: 0.9rem; font-weight: 700; color: #111111; margin-bottom: 4px; }
.step p { font-size: 0.8rem; color: #6B7280; }

/* ===== FOOTER ===== */
footer {
  background: #111111;
  color: #9CA3AF;
  padding: 30px 20px 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo .logo-name { font-size: 1.6rem; }
.footer-logo .logo-tagline { color: #9CA3AF; margin-top: 6px; font-size: 0.8rem; }
.footer-phone { color: #FF690F; font-weight: 700; font-size: 1.1rem; margin-top: 10px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 10px; font-family: 'Raleway', sans-serif; }
.footer-col a { color: #9CA3AF; text-decoration: none; display: block; font-size: 0.82rem; padding: 2px 0; }
.footer-col a:hover { color: #2563EB; }
.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  padding-top: 16px;
  color: #7a9ab8;
}

/* ===== LISTING PAGE ===== */
.search-bar-top {
  background: #111111;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
}
.search-bar-top::before {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 40%; height: 100%;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=600') right/cover no-repeat;
  opacity: 0.15;
}
.search-form-inline {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto auto;
  gap: 10px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.search-form-inline label { font-size: 0.75rem; font-weight: 700; color: #8bc4e8; display: block; margin-bottom: 4px; }
.search-form-inline input,
.search-form-inline select {
  width: 100%; padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: #fff;
  font-size: 0.85rem; color: #111111;
}
.search-btn-inline {
  background: #FF690F; color: #fff; border: none;
  padding: 10px 18px; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  white-space: nowrap;
}

/* Filter tabs */
.filter-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 12px 20px;
  max-width: 1280px; margin: 0 auto;
  align-items: center;
}
.filter-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border: 1px solid #E5E7EB; border-radius: 20px;
  background: #fff; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; color: #111111;
  text-decoration: none; transition: all 0.2s;
}
.filter-tab:hover, .filter-tab.active {
  border-color: #111111; background: #111111; color: #fff;
}
.filter-tab img { width: 28px; }

/* Results */
.results-header {
  max-width: 1280px; margin: 0 auto;
  padding: 16px 20px 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.results-count { font-size: 1.1rem; font-weight: 700; color: #FF690F; }
.sort-btns { display: flex; gap: 8px; }
.sort-btn {
  padding: 6px 14px; border-radius: 4px;
  border: 1px solid #E5E7EB; background: #fff;
  font-size: 0.82rem; cursor: pointer;
  transition: all 0.2s;
}
.sort-btn:hover, .sort-btn.active { background: #111111; color: #fff; border-color: #111111; }

/* Car Card */
.cars-list {
  max-width: 1280px; margin: 0 auto;
  padding: 0 20px 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.car-card {
  background: #111111;
  border-radius: 10px; overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.car-image-col {
  padding: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.car-image-col img { width: 100%; max-width: 220px; }
.rental-agency { display: flex; align-items: center; gap: 8px; }
.agency-logo { height: 28px; }
.agency-rating { display: flex; flex-direction: column; }
.agency-stars { color: #f4c430; font-size: 0.85rem; }
.agency-reviews { font-size: 0.72rem; color: #9CA3AF; }
.avail-badge {
  background: #2563EB;
  color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}

.car-info-col { padding: 16px 20px; }
.car-name { font-family: 'Raleway', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.car-name span { font-size: 0.85rem; font-weight: 400; color: #9CA3AF; }
.car-specs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 10px 0;
}
.spec-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: #cde;
}
.spec-badge svg { width: 16px; height: 16px; fill: #2563EB; }
.km-badge {
  font-size: 0.95rem; font-weight: 700; color: #fff;
  margin: 8px 0;
}
.extras { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.extra-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: #9CA3AF;
  padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.extra-price { color: #fff; font-weight: 600; }
.franchise-box {
  border: 2px solid #FF690F; border-radius: 6px;
  padding: 10px; margin-top: 10px;
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.78rem; color: #E5E7EB;
}
.franchise-box input { flex-shrink: 0; margin-top: 2px; }
.franchise-title { font-weight: 700; font-size: 0.88rem; color: #fff; }
.franchise-box .axa-logo { margin-left: auto; }
.checkpoints { margin-top: 8px; }
.checkpoint { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #9CA3AF; padding: 2px 0; }
.checkpoint svg { width: 14px; height: 14px; fill: #2563EB; }

.car-price-col {
  background: rgba(0,0,0,0.2);
  padding: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  text-align: center;
}
.price-label { font-size: 0.78rem; color: #9CA3AF; }
.price-amount { font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 800; color: #2563EB; }
.price-days { font-size: 0.75rem; color: #9CA3AF; }
.btn-reserver {
  background: #FF690F; color: #fff; border: none;
  padding: 12px 24px; border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem; font-weight: 800;
  cursor: pointer; width: 100%;
  text-decoration: none; display: block;
  text-align: center; transition: background 0.2s;
}
.btn-reserver:hover { background: #E55A00; }
.btn-details {
  background: transparent; color: #9CA3AF; border: 1px solid #aac8e0;
  padding: 8px 16px; border-radius: 6px;
  font-size: 0.82rem; cursor: pointer; width: 100%;
  text-decoration: none; display: block; text-align: center;
  transition: all 0.2s;
}
.btn-details:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ===== RESERVA PAGE ===== */
.reserva-page {
  background: linear-gradient(135deg, #7dd0e8 0%, #5bbcd8 40%, #f5c97a 80%, #e8b560 100%);
  min-height: 100vh;
  padding-bottom: 40px;
}
.reserva-hero {
  background: #111111;
  padding: 20px;
  text-align: center;
  color: #fff;
}
.reserva-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.8rem; font-weight: 800;
}
.reserva-content {
  max-width: 1100px; margin: 30px auto;
  display: grid; grid-template-columns: 360px 1fr;
  gap: 24px; padding: 0 20px;
}
.reserva-left { display: flex; flex-direction: column; gap: 16px; }

.info-box {
  background: rgba(255,255,255,0.95);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.info-box-header {
  background: #111111;
  color: #fff; padding: 14px 18px;
  font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 700;
  text-align: center;
}
.info-box-body { padding: 16px 18px; }
.location-detail { margin-bottom: 12px; }
.location-detail strong { display: block; color: #111111; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.location-detail p { font-size: 0.9rem; color: #111111; margin-top: 2px; }
.duration-badge {
  background: #FF690F; color: #fff;
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 700; display: inline-block;
  margin-top: 8px;
}
.btn-modifier {
  display: inline-block; margin-top: 12px;
  background: #FF690F; color: #fff; border: none;
  padding: 8px 20px; border-radius: 4px;
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
}
.btn-modifier:hover { background: #E55A00; }

.rgpd-box {
  background: rgba(26,58,107,0.9);
  border-radius: 10px; padding: 16px 18px;
  color: #cde; font-size: 0.75rem; line-height: 1.5;
}
.rgpd-box h4 { color: #fff; font-size: 0.88rem; margin-bottom: 8px; font-family: 'Raleway', sans-serif; }
.rgpd-box a { color: #2563EB; }

.reserva-right { display: flex; flex-direction: column; gap: 20px; }

.car-summary-card {
  background: #111111;
  border-radius: 10px; overflow: hidden;
  color: #fff; padding: 20px;
}
.car-summary-top { display: flex; gap: 20px; align-items: flex-start; }
.car-summary-img { max-width: 220px; }
.car-summary-img img { width: 100%; }
.car-summary-details { flex: 1; }
.car-summary-details .car-name { font-size: 1.2rem; }
.franchise-box-reserva {
  border: 2px solid #FF690F; border-radius: 6px;
  padding: 12px; margin-top: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8rem; color: #E5E7EB;
}
.franchise-box-reserva input { flex-shrink: 0; margin-top: 2px; }
.price-total-line {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 16px;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 1rem; font-weight: 700;
}
.price-total-amount { font-family: 'Raleway', sans-serif; font-size: 1.8rem; font-weight: 800; color: #2563EB; }

.form-card {
  background: rgba(255,255,255,0.95);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.form-card-header {
  background: #111111;
  color: #fff; padding: 14px 18px;
  font-size: 0.95rem; font-weight: 700;
}
.form-card-body { padding: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: #111111; }
.form-group span.required { color: #FF690F; }
.form-group input, .form-group select {
  padding: 10px 12px; border: 1px solid #E5E7EB; border-radius: 4px;
  font-size: 0.9rem; color: #111111;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: #111111; outline: none; }
.phone-input-wrap { display: flex; gap: 6px; }
.phone-prefix {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 10px; border: 1px solid #E5E7EB; border-radius: 4px;
  font-size: 0.85rem; white-space: nowrap; background: #F5F5F5;
}
.required-note { font-size: 0.78rem; color: #6B7280; margin-bottom: 12px; }
.btn-payer {
  width: 100%; background: #FF690F; color: #fff; border: none;
  padding: 16px; border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  cursor: pointer; letter-spacing: 1px;
  transition: background 0.2s;
}
.btn-payer:hover { background: #E55A00; }

/* ===== DESTINATION PAGE ===== */
.dest-hero {
  height: 280px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.dest-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dest-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,30,0.4), rgba(0,0,30,0.6));
}
.dest-hero-text { position: relative; z-index: 2; text-align: center; color: #fff; }
.dest-hero-text h1 {
  font-family: 'Raleway', sans-serif; font-size: 2.5rem; font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.dest-hero-text p { font-size: 1rem; margin-top: 6px; }

.dest-search-wrap {
  background: #111111;
  padding: 16px 20px;
}
.dest-search-wrap .search-form-inline { max-width: 900px; }

.dest-content { max-width: 1000px; margin: 30px auto; padding: 0 20px; }
.dest-intro { font-size: 1rem; color: #111111; line-height: 1.7; margin-bottom: 24px; }
.dest-content h2 {
  font-family: 'Raleway', sans-serif; font-size: 1.3rem; font-weight: 800;
  color: #111111; margin-bottom: 12px;
}
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.tip-card { background: #fff; border-radius: 8px; padding: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.tip-card .tip-icon { font-size: 1.8rem; margin-bottom: 8px; }
.tip-card h3 { font-size: 0.9rem; font-weight: 700; color: #111111; margin-bottom: 4px; }
.tip-card p { font-size: 0.82rem; color: #6B7280; line-height: 1.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .car-card { grid-template-columns: 1fr; }
  .car-price-col { flex-direction: row; justify-content: space-between; flex-wrap: wrap; }
  .reserva-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .avantages-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.4rem; }
  .booking-box { min-width: unset; }
  .hero-content { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}
