/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* Paleta Corporativa Principal */
  --verde: #133e35;            /* Pantone verde de fondo general */
  --verde-d: #0d2c26;          /* Verde más profundo para contraste y secciones */
  --verde-darker: #081e1a;     /* Verde ultra oscuro para footer */
  --verde-card: #184a40;       /* Verde contenedor para tarjetas */
  --verde-card-hover: #1e594d; /* Hover de tarjetas */
  --verde-l: #24685a;          /* Verde realce */
  
  --dorado: #bb7f22;           /* Amarillo / dorado del logo */
  --dorado-hover: #d4942d;     /* Dorado hover más luminoso */
  --dorado-glow: rgba(187, 127, 34, 0.35);
  
  --blanco: #ffffff;           /* Blanco puro para tipografía principal */
  --arena: #e2caab;            /* Beige / arena para textos secundarios y acentos */
  --arena-muted: rgba(226, 202, 171, 0.7);
  --border-gold: rgba(187, 127, 34, 0.3);
  --border-sand: rgba(226, 202, 171, 0.2);
  
  /* Compatibilidad y utilidades */
  --salmon: #bb7f22;
  --salmon-l: #e2caab;
  --crema: #e2caab;
  --crema-d: rgba(226, 202, 171, 0.25);
  --texto: #ffffff;
  --texto-secundario: #e2caab;
  --cursor-size: 20px;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--verde);
  color: var(--blanco);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
#cursor {
  position: fixed;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  background: var(--dorado);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.4s ease, opacity 0.2s;
  will-change: transform;
}
#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--arena);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease, opacity 0.3s;
  opacity: 0.6;
  will-change: transform;
}
body.cursor-hover #cursor { width: 48px; height: 48px; opacity: 0.75; background: var(--dorado); }
body.cursor-hover #cursor-ring { width: 62px; height: 62px; opacity: 0.35; border-color: var(--dorado); }
body.cursor-verde #cursor { background: var(--arena); }
body.cursor-verde #cursor-ring { border-color: var(--arena); }
body.cursor-salmon #cursor { background: var(--dorado); }
body.cursor-salmon #cursor-ring { border-color: var(--dorado); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, padding 0.4s, backdrop-filter 0.5s, border-bottom 0.4s;
}
nav.scrolled {
  background: rgba(13, 44, 38, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(187, 127, 34, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 62px;
  width: 62px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.nav-logo:hover img {
  transform: scale(1.06);
}
nav.scrolled .nav-logo img {
  height: 50px;
  width: 50px;
}
.nav-logo-text {
  color: var(--blanco);
  font-family: 'Playfair Display', serif;
  font-size: 18px; letter-spacing: 0.06em; line-height: 1.2;
}
.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 9px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--dorado); display: block;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.2s, letter-spacing 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--dorado);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--dorado); letter-spacing: 0.18em; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: rgba(187, 127, 34, 0.18) !important;
  border: 1px solid var(--dorado) !important;
  color: var(--dorado) !important;
  padding: 10px 26px; border-radius: 2px;
  transition: background 0.25s !important, color 0.25s !important, transform 0.25s !important;
}
.nav-cta:hover {
  background: var(--dorado) !important;
  color: var(--blanco) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  background: var(--verde);
}
.hero-left {
  background: var(--verde);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 64px 70px 80px;
  position: relative; z-index: 2; overflow: hidden;
}
/* sutiles anillos geométricos dorados */
.hero-left::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(187, 127, 34, 0.12);
  animation: slowSpin 40s linear infinite;
}
.hero-left::after {
  content: '';
  position: absolute; bottom: 20px; left: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  border: 1px solid rgba(226, 202, 171, 0.1);
  animation: slowSpin 60s linear infinite reverse;
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-logo-mark {
  width: 56px; margin-bottom: 44px;
  filter: brightness(0) invert(1); opacity: 0.85;
  animation: fadeUp 0.9s ease both;
}
.hero-sub {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-top: -40px;
  margin-bottom: 60px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-brand-wrapper {
  margin-top: 12px;
  margin-bottom: 78px;
  margin-left: 14px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-brand-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}
.hero-brand-img:hover {
  transform: scale(1.02);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--arena);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 42px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}
.btn-primary {
  display: inline-block; background: var(--dorado); color: var(--blanco);
  padding: 15px 36px;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(120%) skewX(-15deg); }
.btn-primary:hover {
  background: var(--dorado-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--dorado-glow);
}
.btn-outline {
  display: inline-block;
  border: 1px solid var(--arena); color: var(--arena);
  padding: 15px 36px;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-outline:hover {
  background: rgba(226, 202, 171, 0.12);
  border-color: var(--blanco);
  color: var(--blanco);
}

.hero-right {
  position: relative; overflow: hidden;
  background: var(--verde-d);
}
.hero-right-inner {
  position: absolute; inset: 0;
  will-change: transform;
}
.hero-right-inner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(19, 62, 53, 0.75), transparent 55%),
              linear-gradient(to top, rgba(19, 62, 53, 0.6) 0%, transparent 40%);
  pointer-events: none;
}

/* Flor emblema desplazada hacia la izquierda y arriba */
.hero-center-flower {
  position: absolute;
  top: calc(50% - 133px);
  left: calc(50% - 103px);
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-center-flower img {
  height: clamp(320px, 48vh, 460px);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
  opacity: 0.95;
}

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 40px; left: 80px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 1s 0.8s ease both;
  z-index: 3;
}
.scroll-hint span {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--arena-muted);
}
.scroll-line {
  width: 40px; height: 1px; background: rgba(226, 202, 171, 0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--dorado);
  animation: scrollPulse 2s ease-in-out infinite 1.2s;
}
@keyframes scrollPulse {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ─── FEATURES BAR (Estilo cintillo catálogo) ─── */
.features-bar {
  background: var(--arena);
  padding: 24px 80px;
  display: flex;
  border-top: 1px solid rgba(187, 127, 34, 0.3);
  border-bottom: 1px solid rgba(187, 127, 34, 0.3);
}
.feature-item {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 0 28px;
  border-left: 1px solid rgba(19, 62, 53, 0.18);
  transition: transform 0.25s;
}
.feature-item:first-child { border-left: none; padding-left: 0; }
.feature-item:hover { transform: translateY(-2px); }
.feature-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--verde); flex-shrink: 0;
}
.feature-text h4 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--verde); margin-bottom: 2px;
}
.feature-text p { font-size: 12px; color: #3d5850; }

/* ─── SECTION BASE ─── */
section { scroll-margin-top: 80px; }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 80px; }
.section-label {
  font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--dorado);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--dorado); opacity: 0.8;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 400; line-height: 1.08;
  color: var(--blanco); margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--dorado); }

/* ─── FILOSOFIA (parallax bg + particles) ─── */
#filosofia {
  padding: 120px 0;
  background: var(--verde-d);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
#filosofia-bg {
  position: absolute; inset: -20%;
  will-change: transform;
}
#filosofia-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.08; filter: grayscale(100%);
}
#particles-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.filosofia-inner {
  max-width: 860px; margin: 0 auto; padding: 0 80px;
  text-align: center; position: relative; z-index: 2;
}
.filosofia-ornament {
  font-family: 'Playfair Display', serif;
  font-size: 120px; line-height: 0.6;
  color: rgba(187, 127, 34, 0.18);
  display: block; margin-bottom: 20px;
  user-select: none;
}
.filosofia-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 300; color: var(--blanco); line-height: 1.65;
  margin-bottom: 40px;
}
.filosofia-quote strong { font-weight: 400; color: var(--dorado); }
.filosofia-divider {
  width: 50px; height: 1px; background: var(--dorado);
  margin: 0 auto 24px; opacity: 0.7;
}
.filosofia-tagline {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--arena);
}

/* ─── SOBRE MI ─── */
#sobre-mi { padding: 110px 0; background: var(--verde); }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center;
}
.sobre-img {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
}
.sobre-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 568 / 1024;
  object-fit: cover;
  object-position: center center;
  border-radius: 4px;
  transition: transform 0.6s ease;
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
  display: block;
}
.sobre-img:hover img { transform: scale(1.02); }
.sobre-img-frame {
  position: absolute; bottom: -18px; right: -18px;
  width: 80%; height: 80%;
  border: 1px solid var(--border-gold);
  border-radius: 3px; z-index: -1;
}
.sobre-badge {
  position: absolute; bottom: 28px; left: -28px;
  background: var(--verde-d); color: var(--blanco);
  padding: 18px 22px; border-radius: 3px;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--border-gold);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.sobre-badge strong {
  display: block; font-size: 30px; font-weight: 500; line-height: 1;
  color: var(--dorado);
}
.sobre-badge span {
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--arena);
}
.sobre-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300;
  color: rgba(255, 255, 255, 0.9); line-height: 1.8; margin-bottom: 18px;
}
.sobre-content p em {
  color: var(--arena); font-style: italic;
}
.sobre-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px;
}
.tag {
  background: rgba(226, 202, 171, 0.06);
  border: 1px solid var(--border-sand);
  color: var(--arena);
  padding: 7px 16px; font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}
.tag:hover {
  background: var(--dorado);
  border-color: var(--dorado);
  color: var(--blanco);
  transform: translateY(-2px);
}

/* ─── SERVICIOS ─── */
#servicios {
  padding: 110px 0;
  background: var(--verde-d);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.servicios-header {
  text-align: center; margin-bottom: 64px;
}
.servicios-sub-loc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; color: var(--blanco);
  max-width: 620px; margin: 0 auto;
  line-height: 1.6;
}
.servicios-sub-note {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: #e3caab;
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.servicios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(187, 127, 34, 0.25);
  border: 1px solid rgba(187, 127, 34, 0.3);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 32px;
}
.servicio-card {
  background: var(--verde);
  padding: 40px 32px;
  transition: background 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.servicio-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--dorado);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.servicio-card:hover {
  background: var(--verde-card-hover);
  transform: translateY(-3px);
}
.servicio-card:hover::before { transform: scaleX(1); }
.servicio-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300;
  color: rgba(226, 202, 171, 0.3); line-height: 1; margin-bottom: 16px;
  transition: color 0.3s;
}
.servicio-card:hover .servicio-num { color: var(--dorado); }
.servicio-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 400;
  color: var(--dorado); margin-bottom: 10px; line-height: 1.25;
}
.servicio-desc {
  font-size: 13px; color: rgba(255, 255, 255, 0.88); line-height: 1.65; margin-bottom: 24px;
}
.servicio-prices { display: flex; flex-direction: column; gap: 0; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-top: 1px solid rgba(226, 202, 171, 0.15);
  font-size: 13px;
}
.price-row:first-child { border-top: none; }
.price-time { color: var(--arena); font-size: 12px; letter-spacing: 0.06em; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 500; color: var(--blanco);
  transition: color 0.3s;
}
.servicio-card:hover .price-amount { color: var(--dorado); }

.servicio-cta {
  background: var(--verde-card);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 40px 32px;
  border-left: 1px solid rgba(187, 127, 34, 0.2);
  transition: background 0.3s;
}
.servicio-cta:hover { background: var(--verde-card-hover); }
.servicio-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--dorado); margin-bottom: 6px;
}
.servicio-cta small {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--arena);
  margin-bottom: 28px; display: block;
}

.servicios-note {
  background: var(--verde);
  border-left: 3px solid var(--dorado);
  border-top: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 18px 24px; border-radius: 0 3px 3px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--blanco); line-height: 1.6;
}
.servicios-note strong { color: var(--blanco); font-weight: 500; }

/* ─── TALLERES CANVA V2 ─── */
#taller {
  padding: 120px 0 110px;
  background: var(--verde);
}

.talleres-v2-header {
  text-align: center;
  margin-bottom: 75px;
}

.talleres-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  color: var(--blanco);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.talleres-v2-title em {
  font-style: italic;
  color: var(--dorado);
}

.talleres-v2-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--arena);
  letter-spacing: 0.03em;
}

/* Grid principal de 2 columnas de talleres */
.talleres-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-bottom: 75px;
}

/* Fila de cada taller: foto vertical + bloque de texto */
.taller-v2-item {
  display: flex;
  align-items: center;
  gap: 34px;
}

/* Contenedor de la foto vertical */
.taller-v2-img-wrap {
  flex: 0 0 210px;
  width: 210px;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
  border: 1px solid var(--border-gold);
}

.taller-v2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
  display: block;
}

.taller-v2-item:hover .taller-v2-img-wrap img {
  transform: scale(1.05);
}

/* Bloque de texto */
.taller-v2-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.taller-v2-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--blanco);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.taller-v2-name em {
  font-style: normal;
  color: var(--dorado);
  letter-spacing: 0.08em;
}

.taller-v2-tags {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--arena);
  margin-bottom: 26px;
}

.taller-v2-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.taller-v2-extra {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--arena);
  margin-top: 18px;
}

/* Recuadro inferior de talleres (idéntico al estilo de Servicios) */
.talleres-note {
  background: var(--verde-d);
  border-left: 3px solid var(--dorado);
  border-top: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 20px 28px;
  border-radius: 0 4px 4px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--blanco);
  line-height: 1.65;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  margin-top: 10px;
}

.talleres-note p {
  color: var(--blanco);
  margin: 0;
}

.talleres-note-sub {
  margin-top: 10px !important;
  color: var(--arena) !important;
  font-style: italic;
  font-size: 18px;
}

/* ─── RESERVA ─── */
#reserva {
  padding: 110px 0;
  background: var(--verde-d);
  border-top: 1px solid var(--border-gold);
}
.reserva-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: start;
}
.reserva-left p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; color: rgba(255, 255, 255, 0.88);
  line-height: 1.7; margin-bottom: 40px;
}
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; background: var(--verde);
  border-radius: 3px; border: 1px solid var(--border-sand);
  text-decoration: none; color: var(--blanco);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.contact-method:hover {
  border-color: var(--dorado);
  background: var(--verde-card);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.contact-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { fill: white; width: 18px; height: 18px; }
.contact-icon.wa { background: #25D366; }
.contact-icon.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.contact-icon.fb { background: #1877F2; }
.contact-icon.tt { background: #010101; }
.contact-method-text strong {
  display: block; font-size: 14px; font-weight: 500; margin-bottom: 1px;
  color: var(--blanco);
}
.contact-method-text span { font-size: 12px; color: var(--arena); }
.contact-method-arrow { margin-left: auto; color: var(--dorado); font-size: 16px; }

.reserva-card {
  background: var(--verde); border-radius: 6px;
  padding: 52px 44px; color: var(--blanco); text-align: center;
  position: sticky; top: 100px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.reserva-card:hover { transform: translateY(-4px); }
.reserva-card img {
  width: 190px; height: 190px; margin: 0 auto 24px; display: block;
  object-fit: contain; border-radius: 4px;
}
.reserva-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 400; margin-bottom: 12px;
  color: var(--blanco);
}
.reserva-card > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300;
  color: var(--arena); line-height: 1.6; margin-bottom: 36px;
}
.wa-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; background: #25D366; color: white;
  padding: 16px 24px; border-radius: 3px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  background: #1fb85a; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.wa-btn svg { fill: white; width: 18px; height: 18px; }
.tel-display {
  font-family: 'Playfair Display', serif;
  font-size: 21px; color: var(--dorado);
  margin-top: 18px; letter-spacing: 0.06em;
}
.reserva-note {
  font-size: 10px; color: var(--arena-muted); margin-top: 16px;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ─── FOOTER ─── */
footer {
  background: var(--verde-darker);
  padding: 48px 80px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
  border-top: 1px solid rgba(187, 127, 34, 0.2);
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
}
.footer-logo-img {
  width: auto;
  height: 120px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.footer-logo-img:hover {
  transform: scale(1.04);
}
.footer-brand-text {
  color: var(--blanco);
  font-family: 'Playfair Display', serif; font-size: 15px; line-height: 1.3;
}
.footer-brand-text small {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dorado);
}
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  color: var(--arena); text-decoration: none;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--dorado); }
.footer-copy {
  color: rgba(226, 202, 171, 0.65); font-size: 11px;
  text-align: right; letter-spacing: 0.05em; line-height: 1.5;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.from-left {
  transform: translateX(-36px);
}
.reveal.from-right {
  transform: translateX(36px);
}
.reveal.visible {
  opacity: 1; transform: translate(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { height: 55vh; }
  .hero-left { padding: 120px 40px 60px; }
  .hero-center-flower { display: none; }
  .sobre-grid, .taller-grid, .reserva-grid { grid-template-columns: 1fr; gap: 52px; }
  .talleres-v2-grid { grid-template-columns: 1fr; gap: 60px; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 16px 28px; }
  nav.scrolled { padding: 12px 28px; }
  .nav-links { display: none; }
  .section-inner { padding: 0 40px; }
  .features-bar { padding: 22px 40px; flex-wrap: wrap; gap: 14px; }
  footer { padding: 36px 40px; flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}
@media (max-width: 680px) {
  .taller-v2-item { flex-direction: column; gap: 24px; text-align: center; }
  .taller-v2-img-wrap { width: 100%; max-width: 260px; height: 360px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .taller-cols { grid-template-columns: 1fr; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}