/* =========================================================
   AlquilerCarrosCali — "Caribe relajado / aireado"
   Calm, airy, minimal. Teal + sand/cream + soft coral.
   ========================================================= */

:root {
  /* Palette */
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --teal-soft: #99e6dd;
  --sand: #faf3e7;
  --sand-deep: #f5e6c8;
  --coral: #f59e8a;
  --coral-deep: #ec8068;
  --ink: #0f3d3a;
  --ink-soft: #3d5e5a;
  --white: #ffffff;

  /* Type */
  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;

  /* Shape */
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow-soft: 0 18px 50px -28px rgba(15, 61, 58, 0.30);
  --shadow-card: 0 24px 60px -32px rgba(15, 61, 58, 0.35);

  /* Layout */
  --maxw: 1140px;
  --gutter: clamp(1.2rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 780px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(13, 148, 136, 0.7);
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(13, 148, 136, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15, 61, 58, 0.22);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-lg { font-size: 1.05rem; padding: 1rem 2.1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 231, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 61, 58, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}
.wordmark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.wordmark-accent { color: var(--teal); }
.wordmark-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(245, 158, 138, 0.22);
  flex: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav > a {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink-soft);
  transition: color .2s ease;
  position: relative;
}
.nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transition: width .25s ease;
}
.nav > a:not(.btn):hover { color: var(--ink); }
.nav > a:not(.btn):hover::after { width: 100%; }
.btn-header {
  background: var(--ink);
  color: var(--white);
  padding: .65rem 1.25rem;
  font-size: .92rem;
}
.btn-header:hover { background: var(--teal); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(4.5rem, 12vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 85% 10%, rgba(153, 230, 221, 0.45) 0%, transparent 60%),
    radial-gradient(55% 65% at 5% 100%, rgba(245, 158, 138, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, var(--sand) 0%, #fbf6ec 100%);
}
.hero-inner { max-width: 760px; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.1rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.hero h1 { color: var(--ink); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 580px;
  margin: 0 0 2.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.hero-note {
  font-size: .9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0;
  opacity: .85;
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--white);
  border-block: 1px solid rgba(15, 61, 58, 0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--teal);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section-soft {
  background: linear-gradient(180deg, #fbf6ec 0%, var(--sand-deep) 100%);
}
.section-head {
  max-width: 620px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 400;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 300;
  margin: 0;
}

/* ---------- Cars ---------- */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.car-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 61, 58, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.car-media {
  position: relative;
  background: linear-gradient(150deg, var(--sand) 0%, #eef9f7 100%);
  padding: 1.4rem 1.4rem 0;
}
.car-media img {
  width: 100%;
  height: 175px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(15, 61, 58, 0.18));
  transition: transform .4s ease;
}
.car-card:hover .car-media img { transform: scale(1.04); }
.car-cat {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.9);
  padding: .35rem .8rem;
  border-radius: 999px;
}
.car-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  flex: 1;
}
.car-body h3 { font-size: 1.4rem; font-weight: 500; }
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0; padding: 0;
}
.chips li {
  font-size: .78rem;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px solid rgba(15, 61, 58, 0.08);
  padding: .3rem .7rem;
  border-radius: 999px;
}
.price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--ink);
  margin: .2rem 0 0;
  margin-top: auto;
}
.price span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price small { font-size: .9rem; font-weight: 400; color: var(--ink-soft); }
.btn-card {
  background: var(--sand);
  color: var(--teal);
  border-color: var(--teal-soft);
  margin-top: .3rem;
}
.btn-card:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.price-note {
  text-align: center;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  font-size: .92rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  border: 1px solid rgba(15, 61, 58, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.benefit-icon {
  display: inline-flex;
  width: 54px; height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(20, 184, 166, 0.14), rgba(245, 158, 138, 0.16));
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: .55rem; }
.benefit p { margin: 0; color: var(--ink-soft); font-weight: 300; font-size: .98rem; }

/* ---------- Destinos ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dest-card:hover { transform: translateY(-5px); }
.dest-photo {
  position: relative;
  min-height: 280px;
  box-shadow: var(--shadow-soft);
}
.dest-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dest-photo:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 61, 58, 0.82) 100%);
  color: var(--white);
}
.dest-overlay h3 { color: var(--white); font-size: 1.4rem; font-weight: 500; margin-bottom: .25rem; }
.dest-overlay p { margin: 0; font-size: .95rem; font-weight: 300; opacity: .92; }
.dest-text {
  background: var(--white);
  border: 1px solid rgba(15, 61, 58, 0.06);
  border-left: 4px solid var(--coral);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
}
.dest-text h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: .7rem; color: var(--teal); }
.dest-text p { margin: 0; color: var(--ink-soft); font-weight: 300; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 1rem; }
.faq details {
  background: var(--white);
  border: 1px solid rgba(15, 61, 58, 0.07);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.faq details[open] { box-shadow: var(--shadow-soft); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.6rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform .3s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.6rem 1.4rem; }
.faq-body p { margin: 0; color: var(--ink-soft); font-weight: 300; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(153, 230, 221, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, var(--teal) 0%, #0b7d73 100%);
  text-align: center;
  color: var(--white);
}
.cta-inner { max-width: 620px; margin-inline: auto; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 400; margin-bottom: 1rem; }
.cta-band p { color: rgba(255, 255, 255, 0.92); font-weight: 300; font-size: 1.1rem; margin: 0 0 2rem; }
.cta-band .btn-primary { background: var(--white); color: var(--teal); box-shadow: 0 16px 40px -16px rgba(0,0,0,0.4); }
.cta-band .btn-primary:hover { background: var(--sand); }
.cta-phone { margin: 1.5rem 0 0 !important; font-size: 1rem; }
.cta-phone a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.5); }
.cta-phone a:hover { border-color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.site-footer .wordmark { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-weight: 300; max-width: 320px; margin: 0; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: .6rem;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--teal-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  font-size: .88rem;
}
.footer-bottom p { margin: 0; }
.footer-note { font-style: italic; opacity: .75; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float svg { width: 34px; height: 34px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 38px -8px rgba(37, 211, 102, 0.7); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--sand);
    border-bottom: 1px solid rgba(15, 61, 58, 0.1);
    padding: 1rem var(--gutter) 1.6rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    transition: transform .35s ease;
    visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav > a { padding: .9rem 0; border-bottom: 1px solid rgba(15, 61, 58, 0.07); }
  .nav > a:not(.btn)::after { display: none; }
  .btn-header { margin-top: 1rem; border: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
