/* ===== VIAJES RAMOS — styles.css v=20260518 ===== */

/* ---- Custom Properties ---- */
:root {
  --bg:        #f4efe6;
  --bg-2:      #e8dfd0;
  --bg-3:      #ffffff;
  --ink:       #1a2e35;
  --ink-soft:  #2d4a54;
  --ink-mute:  #7a9099;
  --accent:    #c4612a;
  --accent-2:  #2d5b6b;
  --accent-3:  #e8a070;
  --line:      rgba(26,46,53,0.12);
  --gold:      #b89060;

  --f-display: "Fraunces", Georgia, serif;
  --f-body:    "Inter", system-ui, sans-serif;

  --nav-h:     88px;
  --r-sm:      8px;
  --r-md:      16px;
  --r-lg:      24px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  width: 100%;
}

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.05; }
h1 { font-size: clamp(2.8rem, 7vw, 6.2rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
em { font-style: italic; color: var(--accent); }
.kicker {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  display: block;
}

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] { opacity: 1; transform: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(196,97,42,0.3);
}
.btn-primary:hover { background: #b0521f; box-shadow: 0 8px 32px rgba(196,97,42,0.4); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ================= NAV ================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#nav.is-solid {
  background: rgba(244,239,230,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.nav-logo:hover .nav-logo-img-wrap {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}
.nav-logo img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
#nav.is-solid .nav-logo-name { color: var(--ink); }
#nav.is-solid .nav-logo-sub  { color: var(--ink-mute); }
@media (max-width: 480px) {
  .nav-logo-text { display: none; }
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: color 0.3s;
}
#nav.is-solid .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition: background 0.3s, transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 2px 16px rgba(196,97,42,0.35);
}
.nav-cta:hover { background: #b0521f; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(196,97,42,0.45); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s;
}
#nav.is-solid .nav-burger span { background: var(--ink); }
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  #nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(244,239,230,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    align-items: flex-start;
  }
  #nav.is-open .nav-links a { color: var(--ink); font-size: 1.1rem; }
  #nav.is-open .nav-cta {
    display: inline-flex;
    position: fixed;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    justify-content: center;
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ---- Carousel ---- */
.hero-carousel {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}
.hero-slide.is-active img { transform: scale(1); }

/* slide label (bottom-right destination tag) */
.slide-label {
  position: absolute;
  bottom: 7rem;
  right: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s 0.6s var(--ease-out), transform 0.8s 0.6s var(--ease-out);
}
.hero-slide.is-active .slide-label {
  opacity: 1;
  transform: none;
}
.slide-country {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.2rem;
}
.slide-city {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  line-height: 1;
}

/* carousel dots */
.carousel-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}
.cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s var(--ease-out), border-radius 0.3s;
}
.cdot.is-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* prev / next arrows */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s var(--ease-out);
  opacity: 0;
  pointer-events: none;
}
.hero:hover .carousel-prev,
.hero:hover .carousel-next {
  opacity: 1;
  pointer-events: auto;
}
.carousel-prev { left: clamp(1rem, 3vw, 2.5rem); }
.carousel-next { right: clamp(1rem, 3vw, 2.5rem); }
.carousel-prev:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.1); }
.carousel-next:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.1); }
@media (max-width: 600px) {
  .carousel-prev, .carousel-next { display: none; }
}

/* legacy .hero-bg kept for safety */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg.is-loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,46,53,0.75) 0%,
    rgba(26,46,53,0.55) 50%,
    rgba(196,97,42,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 5vw, 4rem);
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 5rem));
  max-width: 760px;
}
.hero-content .kicker { color: rgba(255,255,255,0.75); }
.hero-title {
  color: #fff;
  text-wrap: balance;
  max-width: 16ch;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--accent-3); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 46ch;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}
.hero-slogan {
  display: inline-block;
  margin-bottom: 2rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  border-left: 3px solid var(--accent-3);
  padding-left: 1rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-hint span:first-child {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ================= MARQUEE ================= */
.marquee-strip {
  background: var(--accent-2);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee-track span.dot { color: var(--accent-3); font-size: 1rem; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================= MANIFESTO ================= */
.manifesto {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  align-items: start;
}
.manifesto-number {
  font-family: var(--f-display);
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--line);
  line-height: 1;
  font-style: italic;
  user-select: none;
  transition-delay: 0.1s;
}
.manifesto-text h2 { margin-bottom: 1.5rem; }
.manifesto-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 56ch;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.manifesto-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat .stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat > span:nth-child(2) {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: inline;
}
.stat .stat-label {
  font-size: 0.8rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
@media (max-width: 600px) {
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-number { display: none; }
}

/* ================= SECTION HEADER ================= */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-bg { background: var(--bg-2); }

/* ================= PACKAGES ================= */
.paquetes {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg-2);
}
.paquetes-inner { max-width: 1300px; margin: 0 auto; }
.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.pkg-card {
  background: var(--bg-3);
  border-radius: var(--r-lg);
  overflow: visible;
  cursor: pointer;
  box-shadow: 0 4px 32px rgba(26,46,53,0.07);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}
.pkg-card:hover {
  box-shadow: 0 20px 60px rgba(26,46,53,0.15), 0 0 0 0 transparent;
}
.pkg-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.pkg-card:hover .pkg-img-wrap img {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1.05);
}
.pkg-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.pkg-body { padding: 1.5rem; }
.pkg-body h3 {
  margin-bottom: 0.6rem;
  color: var(--ink);
  transition: color 0.3s;
}
.pkg-card:hover .pkg-body h3 { color: var(--accent); }
.pkg-body p {
  font-size: 0.9rem;
  color: var(--ink-mute);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.pkg-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: gap 0.25s var(--ease-out);
}
.pkg-cta:hover { gap: 0.7rem; }
/* staggered reveal for cards */
.pkg-card:nth-child(2) { transition-delay: 0.1s; }
.pkg-card:nth-child(3) { transition-delay: 0.2s; }
.pkg-card:nth-child(4) { transition-delay: 0.3s; }

/* ================= DESTINATIONS ================= */
.destinos {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg);
}
.destinos-inner { max-width: 1300px; margin: 0 auto; }
.destinos-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 420px;
  gap: 1.5rem;
}
.dest-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.dest-card:hover img { transform: scale(1.07); filter: saturate(1.2); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,53,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: background 0.4s;
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(26,46,53,0.9) 0%, rgba(26,46,53,0.2) 65%);
}
.dest-overlay h3 {
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  margin-bottom: 0.3rem;
}
.dest-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}
.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-3);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out), gap 0.25s;
}
.dest-card:hover .dest-cta { opacity: 1; transform: none; }
.dest-cta:hover { gap: 0.7rem; }
.dest-card--large { grid-row: span 1; }
/* staggered reveal */
.dest-card:nth-child(2) { transition-delay: 0.1s; }
.dest-card:nth-child(3) { transition-delay: 0.2s; }
@media (max-width: 900px) {
  .destinos-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest-card { aspect-ratio: 4/3; }
  .dest-card--large { grid-column: span 2; }
}
@media (max-width: 540px) {
  .destinos-bento { grid-template-columns: 1fr; }
  .dest-card--large { grid-column: span 1; }
  .dest-cta { opacity: 1; transform: none; }
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--accent-2);
}
.testimonials .section-header h2 { color: #fff; }
.testimonials .section-header .kicker { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
@supports not (backdrop-filter: blur(12px)) {
  .testi-card { background: rgba(26,46,53,0.7); }
}
.testi-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.testi-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--accent-3);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testi-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
}
.testi-name { color: #fff; font-weight: 700; font-size: 0.9rem; }
.testi-meta { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
/* stagger */
.testi-card:nth-child(2) { transition-delay: 0.1s; }
.testi-card:nth-child(3) { transition-delay: 0.2s; }

/* ================= CONTACT FORM ================= */
.contacto {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
  background: var(--bg-2);
}
.contacto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.contacto-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.contacto-header h2 { margin-bottom: 0.75rem; }
.contacto-header p {
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
}
.lead-form {
  background: var(--bg-3);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 8px 60px rgba(26,46,53,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(45,91,107,0.12);
}
.form-group input.is-error,
.form-group select.is-error { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group-full { margin-bottom: 1.5rem; }
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  position: relative;
}
.btn-submit .btn-sending,
.btn-submit .btn-check { display: none; }
.btn-submit.is-sending .btn-text { display: none; }
.btn-submit.is-sending .btn-sending { display: inline; }
.btn-submit.is-done .btn-text,
.btn-submit.is-done .btn-sending { display: none; }
.btn-submit.is-done .btn-check { display: inline; }
.btn-submit.is-done { background: #27ae60; }

/* ================= FOOTER ================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  overflow: hidden;
}
.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.footer-slogan {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--accent-3); }
.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-credits {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  max-width: 60ch;
  line-height: 1.5;
}
.footer-credits a { color: rgba(255,255,255,0.3); text-decoration: underline; }

/* ================= WHATSAPP STICKY ================= */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem 1.5rem 0.85rem 1rem;
  box-shadow: 0 4px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, padding 0.3s;
  max-width: 280px;
}
.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(37,211,102,0.55);
}
.whatsapp-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.whatsapp-label {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .whatsapp-btn { padding: 1rem; border-radius: 50%; }
  .whatsapp-label { display: none; }
  .whatsapp-btn svg { width: 28px; height: 28px; }
}

/* ================= CUSTOM CURSOR ================= */
.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(196,97,42,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
}
body:has(a:hover, button:hover) .cursor-ring { width: 52px; height: 52px; opacity: 0.7; }
@media (hover: none) { .cursor { display: none; } }

/* ================= UTILITIES ================= */
.container { max-width: 1300px; margin: 0 auto; }
.text-center { text-align: center; }
