/* ============================================================
   CamperVan.cat — Tema "Mediterrània"
   Salvia + verde bosque + terracota sobre marfil y arena
   Tipografías: Fraunces (títulos) + Outfit (texto)
   ============================================================ */

:root {
  --forest: #2d4a2b;
  --forest-deep: #22381f;
  --sage: #7d8471;
  --sage-dark: #5f6757;
  --olive: #a4ac86;
  --terracotta: #c4704f;
  --terracotta-dark: #a85a3c;
  --sand: #e8dcc8;
  --sand-light: #f5efe3;
  --ivory: #faf9f6;
  --charcoal: #2e2a26;
  --warm-gray: #6f675e;
  --danger: #c0392b;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(46, 42, 38, .07);
  --shadow-md: 0 8px 30px rgba(46, 42, 38, .12);
  --shadow-lg: 0 20px 60px rgba(46, 42, 38, .18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- utilidades ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-alt { background: var(--sand-light); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .kicker {
  display: inline-block;
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 600; line-height: 1.15; color: var(--forest);
  margin-bottom: 16px;
}
.section-head p { color: var(--warm-gray); font-size: 1.08rem; }

/* botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: var(--white); box-shadow: 0 6px 20px rgba(196, 112, 79, .35); }
.btn-primary:hover { background: var(--terracotta-dark); box-shadow: 0 10px 26px rgba(196, 112, 79, .45); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-forest { background: var(--forest); color: var(--ivory); box-shadow: 0 6px 20px rgba(45, 74, 43, .3); }
.btn-forest:hover { background: var(--forest-deep); }
.btn-ghost { border: 2px solid var(--sage); color: var(--sage-dark); }
.btn-ghost:hover { background: var(--sage); color: var(--white); }

/* animación de entrada */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 20px 0; transition: all .35s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(250, 249, 246, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { height: 46px; width: auto; transition: height .3s ease; }
.site-header.scrolled .logo img { height: 38px; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ivory); transition: color .2s;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.site-header.scrolled .main-nav a { color: var(--charcoal); text-shadow: none; }
.main-nav a:hover { color: var(--terracotta) !important; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 500; color: var(--ivory);
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.site-header.scrolled .header-phone { color: var(--warm-gray); text-shadow: none; }
.header-phone:hover { color: var(--terracotta) !important; }
.header-book { padding: 11px 24px; font-size: .8rem; }

/* selector de idioma */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  font-size: .85rem; font-weight: 600; color: var(--ivory);
  padding: 7px 12px; border-radius: 999px;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
  transition: background .2s, color .2s;
}
.site-header.scrolled .lang-btn { color: var(--charcoal); text-shadow: none; }
.lang-btn:hover { background: rgba(125, 132, 113, .18); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 8px; min-width: 160px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .22s ease;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: none; }
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 12px; border-radius: 8px; font-size: .92rem; color: var(--charcoal);
  transition: background .15s;
}
.lang-menu button:hover { background: var(--sand-light); }
.lang-menu button.active { background: var(--sand-light); font-weight: 600; color: var(--forest); }

/* menú móvil */
.burger { display: none; color: var(--ivory); padding: 6px; }
.site-header.scrolled .burger { color: var(--charcoal); }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(34, 56, 31, .5); z-index: 70;
  opacity: 0; visibility: hidden; transition: opacity .3s;
}
.mobile-overlay.visible { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(330px, 85vw); z-index: 80;
  background: var(--ivory); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  padding: 28px; overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-menu-head img { height: 40px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  padding: 15px 4px; font-size: 1.05rem; font-weight: 500;
  border-bottom: 1px solid var(--sand);
}
.mobile-menu nav a:hover { color: var(--terracotta); }
.mobile-menu .mobile-extra { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu .mobile-extra a { display: flex; align-items: center; gap: 10px; color: var(--warm-gray); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--white); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 65%;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,56,31,.55) 0%, rgba(46,42,38,.35) 45%, rgba(34,56,31,.72) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; padding: 120px 24px 80px; }
.hero-tagline {
  display: inline-block; font-size: .8rem; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  padding: 10px 22px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px;
  margin-bottom: 28px; backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 600; line-height: 1.08; margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero p {
  font-size: clamp(1.02rem, 2vw, 1.25rem); font-weight: 300;
  max-width: 640px; margin: 0 auto 38px; opacity: .94;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--white); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: .85; animation: bounce 2.2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* ---------- beneficios ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 38px 28px;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  color: var(--ivory); border-radius: 18px;
}
.benefit-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.benefit-card p { color: var(--warm-gray); font-size: .95rem; }

/* ---------- la furgoneta ---------- */
.van-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; margin-bottom: 70px; }
.van-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.van-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.van-photo:hover img { transform: scale(1.04); }
.van-text .van-name {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600; color: var(--forest); margin-bottom: 6px;
}
.van-text .van-sub { color: var(--terracotta); font-weight: 500; margin-bottom: 18px; }
.van-text .van-desc { color: var(--warm-gray); margin-bottom: 30px; }
.van-features { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.van-feature { display: flex; align-items: center; gap: 11px; font-size: .93rem; font-weight: 500; }
.van-feature svg { flex-shrink: 0; color: var(--sage-dark); }

.gallery-title {
  font-family: var(--font-display); text-align: center;
  font-size: 1.5rem; font-weight: 600; color: var(--forest); margin-bottom: 30px;
}
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px;
}
.gallery a { border-radius: 12px; overflow: hidden; position: relative; display: block; }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery a:nth-child(6) { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(34,56,31,0); transition: background .3s;
}
.gallery a:hover img { transform: scale(1.07); }
.gallery a:hover::after { background: rgba(34,56,31,.18); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(20, 24, 18, .94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 22px; right: 26px; color: #fff; opacity: .8; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; opacity: .75; padding: 18px;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

/* ---------- precios ---------- */
.season-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; margin-bottom: 60px; }
.season-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 30px;
  text-align: center; box-shadow: var(--shadow-sm); position: relative;
  border: 2px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease;
}
.season-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.season-card.featured { border-color: var(--terracotta); box-shadow: var(--shadow-md); }
.season-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px; white-space: nowrap;
}
.season-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--forest); }
.season-card .period { color: var(--warm-gray); font-size: .88rem; margin: 6px 0 22px; }
.season-card .price { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--charcoal); line-height: 1; }
.season-card .price small { font-size: 1.05rem; font-family: var(--font-body); font-weight: 400; color: var(--warm-gray); }
.season-card .min-days { color: var(--sage-dark); font-size: .88rem; font-weight: 500; margin: 12px 0 26px; }

.pricing-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; margin-bottom: 70px; }
.pricing-box { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.pricing-box h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--forest); margin-bottom: 22px;
}
.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.included-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; }
.included-list svg { flex-shrink: 0; margin-top: 3px; color: var(--terracotta); }
.extras-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px dashed var(--sand);
  font-size: .95rem;
}
.extras-list li:last-child { border-bottom: none; }
.extras-list .x-price { font-weight: 600; color: var(--terracotta); white-space: nowrap; }

/* calendario */
.calendar-wrap { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.calendar-head { text-align: center; margin-bottom: 8px; }
.calendar-head h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--forest); }
.calendar-head p { color: var(--warm-gray); font-size: .94rem; margin-top: 6px; }
.cal-controls { display: flex; align-items: center; justify-content: space-between; max-width: 720px; margin: 18px auto 6px; }
.cal-controls button {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark); transition: background .2s;
}
.cal-controls button:hover { background: var(--sand-light); }
.cal-months { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.cal-month { width: 300px; }
.cal-month-name {
  text-align: center; font-weight: 600; color: var(--charcoal);
  text-transform: capitalize; margin-bottom: 10px;
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { text-align: center; font-size: .72rem; color: var(--warm-gray); padding: 6px 0; font-weight: 600; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .86rem; border-radius: 50%; cursor: pointer; border: none; background: none;
  transition: background .15s, color .15s;
}
.cal-day:hover:not(.disabled):not(.unavailable) { background: var(--sand); }
.cal-day.other { visibility: hidden; }
.cal-day.disabled { color: #c9c3ba; cursor: default; }
.cal-day.unavailable { color: var(--danger); background: rgba(192, 57, 43, .1); cursor: not-allowed; font-weight: 600; }
.cal-day.selected { background: var(--forest); color: #fff; font-weight: 600; }
.cal-day.in-range { background: rgba(125, 132, 113, .25); border-radius: 0; }
.cal-day.today { outline: 2px solid var(--olive); outline-offset: -2px; }
.cal-selection {
  text-align: center; margin-top: 18px; font-size: .95rem; color: var(--forest);
  font-weight: 500; min-height: 24px;
}

/* ---------- cómo funciona ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-bottom: 50px; }
.step-card { text-align: center; padding: 20px; position: relative; }
.step-num {
  font-family: var(--font-display); font-size: 4.4rem; font-weight: 600; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--olive);
  margin-bottom: 14px;
}
.step-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--forest); margin-bottom: 10px; }
.step-card p { color: var(--warm-gray); font-size: .95rem; }
.steps-cta { text-align: center; }

/* ---------- testimonios ---------- */
.section-testimonials { background: var(--forest); color: var(--ivory); }
.section-testimonials .section-head h2 { color: var(--ivory); }
.section-testimonials .section-head p { color: rgba(250, 249, 246, .75); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.testimonial-card {
  background: rgba(250, 249, 246, .07); border: 1px solid rgba(250, 249, 246, .14);
  border-radius: var(--radius); padding: 34px 30px;
  backdrop-filter: blur(4px);
  transition: transform .3s ease, background .3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); background: rgba(250, 249, 246, .11); }
.testimonial-stars { color: #f4a900; letter-spacing: 3px; margin-bottom: 16px; font-size: .95rem; }
.testimonial-card blockquote { font-size: .98rem; font-weight: 300; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--olive); }
.testimonial-author .t-name { font-weight: 600; font-size: .95rem; }
.testimonial-author .t-trip { font-size: .8rem; color: rgba(250, 249, 246, .65); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: 12px; margin-bottom: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; text-align: left;
  font-size: 1.02rem; font-weight: 600; color: var(--charcoal);
  transition: color .2s;
}
.faq-q:hover { color: var(--terracotta); }
.faq-q svg { flex-shrink: 0; transition: transform .3s ease; color: var(--sage-dark); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--warm-gray); font-size: .96rem; }
.faq-foot { text-align: center; margin-top: 40px; }
.faq-foot p { color: var(--warm-gray); margin-bottom: 18px; }

/* ---------- banda CTA ---------- */
.cta-band {
  position: relative; padding: 110px 0; text-align: center; color: var(--white);
  background-size: cover; background-position: center 70%;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(34,56,31,.82), rgba(196,112,79,.55));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600; margin-bottom: 16px;
}
.cta-band p { font-size: 1.12rem; font-weight: 300; margin-bottom: 36px; opacity: .92; }
.cta-band .hero-ctas { margin: 0; }

/* ---------- contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: start; }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--charcoal); }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--sand); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--charcoal);
  background: var(--ivory);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(125, 132, 113, .18);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-form-card .btn { width: 100%; }

.contact-side h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.contact-side > p { color: var(--warm-gray); margin-bottom: 26px; font-size: .96rem; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: 12px; padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand-light); color: var(--forest);
}
.contact-card.whatsapp .contact-card-icon { background: rgba(37, 211, 102, .14); color: #1faa53; }
.contact-card .c-label { font-weight: 600; font-size: .95rem; }
.contact-card .c-value { font-size: .85rem; color: var(--warm-gray); }
.contact-hours { font-size: .9rem; color: var(--warm-gray); }
.contact-hours strong { color: var(--charcoal); }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); color: #b8b1a7; padding: 70px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { height: 52px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(250, 249, 246, .08); color: #d8d2c8;
  transition: background .25s, color .25s, transform .25s;
}
.footer-social a:hover { background: var(--terracotta); color: #fff; transform: translateY(-3px); }
.footer-col h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 18px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--terracotta); }
.footer-col .note { font-size: .8rem; opacity: .75; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(250, 249, 246, .1);
  padding: 24px 0; text-align: center; font-size: .82rem; color: #8d867c;
}
.footer-bottom p { margin: 3px 0; }

/* ---------- modal legal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(34, 42, 31, .6);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .3s;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--ivory); border-radius: var(--radius); max-width: 760px; width: 100%;
  max-height: 84vh; display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px); transition: transform .3s;
}
.modal-overlay.open .modal { transform: none; }
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 30px; border-bottom: 1px solid var(--sand);
}
.modal-head h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--forest); }
.modal-body { padding: 10px 30px 34px; overflow-y: auto; color: var(--warm-gray); font-size: .94rem; }
.modal-body h2 { font-family: var(--font-display); font-size: 1.15rem; color: var(--forest); margin: 26px 0 10px; }
.modal-body h3 { font-size: 1rem; color: var(--charcoal); margin: 18px 0 8px; }
.modal-body p { margin-bottom: 12px; }
.modal-body ul { margin: 0 0 14px 20px; list-style: disc; }
.modal-body li { margin-bottom: 6px; }
.modal-body strong { color: var(--charcoal); }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 80px);
  background: var(--forest); color: var(--ivory);
  padding: 16px 28px; border-radius: 12px; box-shadow: var(--shadow-lg);
  z-index: 110; text-align: center;
  opacity: 0; transition: all .4s cubic-bezier(.4, 0, .2, 1);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast strong { display: block; margin-bottom: 2px; }
.toast span { font-size: .88rem; opacity: .85; }

/* botón flotante WhatsApp */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .main-nav, .header-phone, .header-book { display: none; }
  .burger { display: block; }
  .van-intro { grid-template-columns: 1fr; gap: 36px; }
  .pricing-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery a:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .included-list { grid-template-columns: 1fr; }
  .van-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery a { grid-column: span 1 !important; grid-row: span 1 !important; }
  .cal-month { width: 100%; }
}
