/* ═══════════════════════════════════════════════════════════
   FINCA MANZALA · styles.css
   Developed by Zavage Studio · zavage.studio
   ═══════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --birch:        #EBE2D8;
  --birch-dark:   #D9CCC0;
  --toffee:       #7F6346;
  --toffee-lt:    #A68660;
  --evergreen:    #898358;
  --evergreen-dk: #5C5938;
  --tangerine:    #8E462D;
  --text-dark:    #2C2416;
  --text-mid:     #5A4A38;
  --text-light:   #FAF7F2;
  --text-muted:   #9A8878;
  --ph-bg:        #D6CFC4;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Lato', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 10px rgba(44,36,22,.08);
  --shadow-md:  0 6px 24px rgba(44,36,22,.12);
  --shadow-lg:  0 14px 44px rgba(44,36,22,.16);
  --shadow-xl:  0 24px 64px rgba(44,36,22,.22);

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --max-w:    1100px;
  --header-h: 66px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-ui); color: var(--text-dark); background: var(--birch); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-ui); }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }

/* ── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(70px, -55px) scale(1.13); }
  50%  { transform: translate(28px, 85px) scale(0.91); }
  75%  { transform: translate(-62px, 28px) scale(1.07); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-78px, 62px) scale(1.18); }
  66%  { transform: translate(52px, -72px) scale(0.88); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbFloat3 {
  0%   { transform: translate(0, 0) scale(0.93); }
  40%  { transform: translate(58px, 60px) scale(1.09); }
  80%  { transform: translate(-42px, -38px) scale(1); }
  100% { transform: translate(0, 0) scale(0.93); }
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-7px); }
  40%       { transform: translateX(7px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 0.4; }
  50%       { transform: scaleY(0.18) translateY(0); opacity: 1; }
}

/* ── SCROLL PROGRESS ───────────────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--tangerine), var(--toffee-lt));
  z-index: 9999;
  transition: width .1s linear;
  pointer-events: none;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-center { text-align: center; }

/* ── SECTIONS ──────────────────────────────────────────────── */
.section-light    { padding: 80px 0; background: var(--birch); }
.section-toffee   { padding: 80px 0; background: var(--toffee); }
.section-dark     { padding: 80px 0; background: var(--text-dark); }
.section-evergreen {
  padding: 120px 0;
  background: var(--evergreen-dk);
  position: relative;
  overflow: hidden;
}
.section-evergreen .container { position: relative; z-index: 2; }

@media (min-width: 900px) {
  .section-light, .section-toffee, .section-dark { padding: 110px 0; }
  .section-evergreen { padding: 140px 0; }
}

/* ── SECTION HEADERS ───────────────────────────────────────── */
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--toffee-lt);
  margin-bottom: 10px;
}
.eyebrow-light { color: rgba(250,247,242,.55); }

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}
.heading-light { color: var(--text-light); }
h2 em { font-style: italic; font-weight: 400; }

.section-subtitle {
  margin-top: 14px;
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 540px;
  line-height: 1.7;
}

/* ── REVEAL ON SCROLL ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── LOGO ──────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .4s var(--spring);
  background: none;
}
.logo-img {
  object-fit: contain;
  display: block;
  /* brightness(0) fuerza negro puro, invert(1) lo convierte en blanco */
  filter: brightness(0) invert(1);
}
.logo-sm       { height: 38px; width: auto; }
.logo-sm .logo-img { height: 38px; width: auto; }
.logo-sm:hover { transform: scale(1.07); }
.logo-hero     { height: 380px; width: auto; }
.logo-hero .logo-img { height: 380px; width: auto; }
.logo-footer   { height: 52px; width: auto; }
.logo-footer .logo-img { height: 52px; width: auto; }
/* Scrolled header — logo oscuro sobre fondo claro */
#site-header.scrolled .logo-sm .logo-img { filter: brightness(1) invert(0); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 12px 26px;
  transition: transform var(--trans), box-shadow var(--trans),
              background var(--trans), color var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }

.btn-header {
  border: 1.5px solid rgba(250,247,242,.45);
  color: var(--text-light);
  padding: 9px 20px;
  font-size: .75rem;
}
.btn-header:hover { background: rgba(250,247,242,.1); border-color: rgba(250,247,242,.75); }
#site-header.scrolled .btn-header {
  border-color: var(--toffee);
  color: var(--toffee);
}
#site-header.scrolled .btn-header:hover { background: var(--toffee); color: var(--text-light); }

.btn-hero {
  background: var(--tangerine);
  color: var(--text-light);
  padding: 15px 38px;
  font-size: .85rem;
}
.btn-hero:hover { box-shadow: 0 8px 28px rgba(142,70,45,.42); }

.btn-light {
  background: var(--text-light);
  color: var(--text-dark);
}
.btn-light:hover { box-shadow: 0 8px 24px rgba(250,247,242,.22); }

.btn-ghost-light {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(250,247,242,.38);
}
.btn-ghost-light:hover { background: rgba(250,247,242,.1); border-color: rgba(250,247,242,.7); }

.btn-pkg-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(250,247,242,.28);
  width: 100%;
  padding: 11px;
  font-size: .78rem;
}
.btn-pkg-outline:hover { background: rgba(250,247,242,.08); border-color: rgba(250,247,242,.6); }

.btn-tangerine {
  background: var(--tangerine);
  color: var(--text-light);
  width: 100%;
  padding: 11px;
  font-size: .78rem;
}
.btn-tangerine:hover { box-shadow: 0 6px 20px rgba(142,70,45,.45); }

.btn-submit {
  background: var(--tangerine);
  color: var(--text-light);
  padding: 17px 52px;
  font-size: .88rem;
}
.btn-submit:hover { box-shadow: 0 8px 28px rgba(142,70,45,.4); }
.btn-submit.is-sent { background: var(--evergreen); pointer-events: none; }

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.btn-group-center {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  width: 10px; height: 10px;
  pointer-events: none;
  transform: scale(0);
  animation: rippleAnim .7s var(--ease) forwards;
}

/* ── PLACEHOLDER IMAGES ────────────────────────────────────── */
.ph {
  background: var(--ph-bg);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 0 16px;
  pointer-events: none;
}

/* ── MESH BACKGROUND ───────────────────────────────────────── */
.mesh-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  will-change: transform;
}
.orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(137,131,88,.65) 0%, transparent 65%);
  top: -170px; left: -170px;
  animation: orbFloat1 14s ease-in-out infinite;
}
.orb-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(127,99,70,.55) 0%, transparent 65%);
  bottom: -120px; right: -60px;
  animation: orbFloat2 18s ease-in-out infinite;
  animation-delay: -5s;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(142,70,45,.45) 0%, transparent 65%);
  top: 42%; right: -90px;
  animation: orbFloat3 11s ease-in-out infinite;
  animation-delay: -8s;
}
.orb-toffee {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(127,99,70,.42) 0%, transparent 65%);
  top: -160px; left: -200px;
  animation: orbFloat2 20s ease-in-out infinite;
  filter: blur(88px);
}
.orb-tangerine {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(142,70,45,.35) 0%, transparent 65%);
  bottom: -100px; right: -140px;
  animation: orbFloat1 16s ease-in-out infinite;
  animation-delay: -6s;
  filter: blur(88px);
}
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 190px 190px;
  opacity: .038;
  pointer-events: none;
  z-index: 2;
}

/* ── HEADER ────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 13px 0;
  transition: padding var(--trans), background var(--trans),
              box-shadow var(--trans), backdrop-filter .4s var(--ease);
}
#site-header.scrolled {
  padding: 8px 0;
  background: rgba(235,226,216,.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(44,36,22,.1);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-brand { display: flex; align-items: center; gap: 10px; }
.header-name {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-dark);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--trans), transform var(--trans);
}
#site-header.scrolled .header-name { opacity: 1; transform: translateX(0); }
#site-header.scrolled .logo-sm { border-color: transparent; }

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--text-dark);
}
#hero .mesh-bg { z-index: 0; }
#hero .noise-overlay { z-index: 1; }

.hero-image {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  background: var(--ph-bg) url('https://res.cloudinary.com/dczvjk1ub/image/upload/f_auto,q_auto/Hero_swbkza') center center / cover no-repeat;
  z-index: 2;
}
.hero-image::after { display: none; }

/* Top vignette for header legibility */
#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(44,36,22,.55), transparent);
  z-index: 4;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44,36,22,.93) 0%,
    rgba(44,36,22,.42) 42%,
    rgba(44,36,22,.08) 72%,
    transparent 100%
  );
  z-index: 3;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  padding: calc(var(--header-h) + 24px) 28px 120px;
  gap: 14px;
}
/* All direct children start hidden — JS adds .hero-visible */
.hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}
.hero-content > *.hero-visible { opacity: 1; transform: translateY(0); }

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(250,247,242,.6);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 11vw, 7.5rem);
  font-weight: 600;
  color: var(--text-light);
  line-height: 1;
  letter-spacing: -.01em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-title-small {
  display: block;
  font-size: .36em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .06em;
  color: rgba(250,247,242,.65);
  line-height: 1.4;
}
.hero-subline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(.95rem, 2.4vw, 1.15rem);
  color: rgba(250,247,242,.72);
  max-width: 420px;
  line-height: 1.65;
}
.scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity .4s ease;
}
.scroll-hint-text {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(250,247,242,.38);
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(250,247,242,.55), transparent);
  transform-origin: top;
  animation: scrollLine 2.4s ease-in-out infinite;
}

/* ── PHOTO STRIP ───────────────────────────────────────────── */
.photo-strip {
  width: 100%;
  overflow: hidden;
  background: var(--text-dark);
}
.photo-strip-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.photo-strip-track:active { cursor: grabbing; }
.photo-strip-track::-webkit-scrollbar { display: none; }
.photo-strip-item {
  flex: 0 0 80vw;
  max-width: 440px;
  height: 260px;
  scroll-snap-align: start;
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.photo-strip-item:hover img { transform: scale(1.04); }

@media (min-width: 900px) {
  .photo-strip-item {
    flex: 1 0 0;
    max-width: none;
    height: 340px;
  }
  /* On desktop show all 4 at once — no scroll needed */
  .photo-strip-track { overflow: visible; cursor: default; }
  .photo-strip-track:active { cursor: default; }
}

/* ── GALLERY ───────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  min-height: 140px;
}
.gallery-item .ph,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.gallery-item:hover .ph,
.gallery-item:hover img { transform: scale(1.055); }

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 290px 290px 210px;
    gap: 14px;
    min-height: 0;
  }
  .gallery-item { min-height: 0; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 3;     grid-row: 1; }
  .gallery-item:nth-child(3) { grid-column: 1;     grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 2;     grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }
  .gallery-item:nth-child(6) { grid-column: 3;     grid-row: 2 / 4; }
}

/* ── CONOCE ────────────────────────────────────────────────── */
.conoce-grid {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.body-light {
  color: rgba(250,247,242,.82);
  line-height: 1.78;
  margin-bottom: 14px;
  font-size: .97rem;
}
.conoce-text h2 { margin-bottom: 20px; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.glass-card {
  background: rgba(250,247,242,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(250,247,242,.17);
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  transition: transform .35s var(--spring), box-shadow var(--trans);
  will-change: transform;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.stat-number {
  display: inline;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--toffee-lt);
}
.stat-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(250,247,242,.5);
  margin-top: 8px;
}

@media (min-width: 900px) {
  .conoce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
  }
  .btn-group { flex-direction: row; }
}

/* ── SERVICIOS ─────────────────────────────────────────────── */
.servicios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--spring), box-shadow var(--trans);
  will-change: transform;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 10px;
  transition: transform .35s var(--spring);
}
.service-card:hover .service-icon { transform: rotate(8deg) scale(1.12); }
.service-name {
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-desc {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 640px)  { .servicios-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  {
  .servicios-grid { gap: 16px; }
  .service-card { padding: 32px 22px; }
}

/* ── PAQUETES ──────────────────────────────────────────────── */
.paquetes-track { overflow: hidden; }
.paquetes-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 24px 24px 28px;
}
.paquetes-scroll::-webkit-scrollbar { display: none; }

.paquete-card {
  flex: 0 0 clamp(290px, 82vw, 340px);
  scroll-snap-align: center;
  background: rgba(250,247,242,.07);
  border: 1px solid rgba(250,247,242,.11);
  border-radius: var(--radius-xl);
  padding: 36px 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}
.paquete-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,.28); }
.paquete-featured {
  background: var(--toffee);
  border-color: var(--toffee);
}
.paquete-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tangerine);
  color: var(--text-light);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.paquete-num {
  position: absolute;
  bottom: 18px; right: 22px;
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(250,247,242,.055);
  user-select: none;
  pointer-events: none;
}
.paquete-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.paquete-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-light);
}
.paquete-desc {
  font-size: .8rem;
  color: rgba(250,247,242,.58);
  line-height: 1.5;
}
.paquete-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 4px;
}
.paquete-list li {
  font-size: .81rem;
  color: rgba(250,247,242,.84);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.paquete-list li::before {
  content: '✓';
  color: var(--evergreen);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.paquete-featured .paquete-list li::before { color: #b8d896; }

.paquetes-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 4px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(250,247,242,.2);
  transition: background var(--trans), width var(--trans), border-radius var(--trans);
}
.dot-active {
  background: var(--tangerine);
  width: 22px;
  border-radius: 4px;
}

@media (min-width: 900px) {
  .paquetes-track {
    max-width: var(--max-w);
    margin: 0 auto;
    overflow: visible;
    padding: 0 24px;
  }
  .paquetes-scroll {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 16px 0 24px;
    scroll-snap-type: none;
  }
  .paquete-card { flex: unset; }
  .paquetes-dots { display: none; }
}

/* ── RESEÑAS ───────────────────────────────────────────────── */
.resenas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .35s var(--spring), box-shadow var(--trans);
  will-change: transform;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #F5A623; font-size: .95rem; letter-spacing: 3px; }
.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text-mid);
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--birch-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: .06em;
  flex-shrink: 0;
}
.review-name  { font-weight: 700; font-size: .83rem; color: var(--text-dark); }
.review-event { font-size: .73rem; color: var(--text-muted); letter-spacing: .06em; }

.resenas-link { text-align: center; padding-top: 8px; }
.link-animated {
  font-size: .84rem;
  font-weight: 700;
  color: var(--toffee);
  letter-spacing: .04em;
  position: relative;
}
.link-animated::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--toffee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
}
.link-animated:hover::after { transform: scaleX(1); }

@media (min-width: 640px) { .resenas-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .resenas-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── AGENDA ────────────────────────────────────────────────── */
.agenda-text {
  font-family: var(--font-display);
  font-size: clamp(.98rem, 2.2vw, 1.18rem);
  color: rgba(250,247,242,.78);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.72;
}

/* ── COTIZADOR ─────────────────────────────────────────────── */
.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 640px) { .form-card { padding: 52px 48px; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--toffee);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(127,99,70,.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.85);
  font-family: var(--font-ui);
  font-size: .92rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans), transform .2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--toffee);
  box-shadow: 0 0 0 3px rgba(127,99,70,.12);
  transform: translateY(-1px);
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--tangerine);
  box-shadow: 0 0 0 3px rgba(142,70,45,.12);
  animation: shake .42s var(--ease);
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--toffee);
  pointer-events: none;
  font-size: .88rem;
}
.form-submit { text-align: center; }

/* ── FOOTER ────────────────────────────────────────────────── */
#footer { background: var(--text-dark); padding: 60px 0 40px; }
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand-info { display: flex; flex-direction: column; gap: 3px; }
.footer-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-light); }
.footer-tagline { font-size: .73rem; color: rgba(250,247,242,.42); letter-spacing: .09em; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,242,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,.52);
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform .35s var(--spring);
}
.social-btn:hover {
  background: var(--toffee);
  color: var(--text-light);
  border-color: var(--toffee);
  transform: translateY(-4px);
}
.footer-divider { height: 1px; background: rgba(250,247,242,.08); margin-bottom: 28px; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-copy   { font-size: .73rem; color: rgba(250,247,242,.28); }
.footer-credit { font-size: .73rem; color: rgba(250,247,242,.28); }
.footer-credit a {
  color: rgba(250,247,242,.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--trans);
}
.footer-credit a:hover { color: var(--text-light); }

@media (min-width: 640px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
