/* =========================================
   TENTACIONES BRIZ — Main Stylesheet
   ========================================= */

:root {
  --rose-light: #ffd6e7;
  --rose-mid: #f9a8d4;
  --rose-deep: #ec4899;
  --violet-light: #e9d5ff;
  --violet-mid: #c084fc;
  --violet-deep: #7c3aed;
  --indigo: #4f46e5;
  --glass-bg: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.22);
  --text-light: rgba(255,255,255,0.92);
  --gold: #d4a853;
  --bg-base: #0f0020;
  --sidebar-w: 280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── SCROLLBAR ROSA ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(15,0,32,0.8); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rose-deep), var(--violet-mid));
  border-radius: 10px;
  border: 2px solid rgba(15,0,32,0.6);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f472b6, var(--violet-deep));
}
* { scrollbar-width: thin; scrollbar-color: var(--rose-deep) rgba(15,0,32,0.8); }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--bg-base);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ── BACKGROUND ORBS ── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.40; animation: floatOrb 20s infinite ease-in-out; }
.orb-1 { width: 620px; height: 620px; background: radial-gradient(circle, #7c3aed, transparent); top: -18%; left: -12%; animation-delay: 0s; }
.orb-2 { width: 520px; height: 520px; background: radial-gradient(circle, #ec4899, transparent); top: 28%; right: -12%; animation-delay: -7s; }
.orb-3 { width: 420px; height: 420px; background: radial-gradient(circle, #c084fc, transparent); bottom: -12%; left: 18%; animation-delay: -14s; }
.orb-4 { width: 320px; height: 320px; background: radial-gradient(circle, #f9a8d4, transparent); top: 55%; left: 48%; animation-delay: -4s; }
@keyframes floatOrb {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(45px,-55px) scale(1.07); }
  66%      { transform: translate(-35px,35px) scale(0.94); }
}

/* noise */
body::before {
  content:''; position:fixed; inset:0; z-index:1; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity:0.3;
}

/* ── LAYOUT WITH SIDEBAR ── */
.site-wrapper { display: flex; min-height: 100vh; position: relative; z-index: 2; }

/* ── SIDEBAR ── */
.sidebar {
  position: fixed; top: 0; left: 0; height: 100vh;
  width: var(--sidebar-w);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  background: rgba(15,0,32,0.72);
  border-right: 1px solid rgba(255,255,255,0.10);
  z-index: 200;
  display: flex; flex-direction: column;
  padding: 36px 0 28px;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 4px 0 40px rgba(0,0,0,0.35);
}
.sidebar::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(124,58,237,0.08) 0%, rgba(236,72,153,0.06) 100%);
  pointer-events:none;
}

/* Sidebar top */
.sidebar-brand {
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.sidebar-logo {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(249,168,212,0.4);
  box-shadow: 0 0 24px rgba(236,72,153,0.3);
  object-fit: cover;
}
.sidebar-name {
  font-family: 'Great Vibes', cursive;
  font-size: 1.55rem;
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-align: center; line-height: 1.1;
}
.sidebar-tagline {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); text-align: center; font-weight: 300;
}

/* Sidebar nav */
.sidebar-nav { flex: 1; padding: 24px 16px; display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-radius: 14px;
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 300;
  transition: all 0.22s; position: relative;
}
.sidebar-nav a .nav-icon { font-size: 1.05rem; width: 22px; text-align: center; flex-shrink: 0; }
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(255,255,255,0.08);
  color: white;
}
.sidebar-nav a::before {
  content:''; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:3px; height:0; border-radius:0 3px 3px 0;
  background: linear-gradient(to bottom, var(--rose-deep), var(--violet-mid));
  transition: height 0.22s;
}
.sidebar-nav a:hover::before, .sidebar-nav a.active::before { height: 60%; }

/* Sidebar social */
.sidebar-social {
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 10px;
}
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px; text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 400;
  transition: all 0.22s;
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn-wa {
  background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.25);
  color: #4ade80;
}
.social-btn-wa:hover { background: rgba(37,211,102,0.22); box-shadow: 0 4px 16px rgba(37,211,102,0.2); }
.social-btn-fb {
  background: rgba(24,119,242,0.12); border: 1px solid rgba(24,119,242,0.25);
  color: #60a5fa;
}
.social-btn-fb:hover { background: rgba(24,119,242,0.22); box-shadow: 0 4px 16px rgba(24,119,242,0.2); }

/* Sidebar location chip */
.sidebar-location {
  padding: 14px 24px 0;
  font-size: 0.65rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em; text-align: center; line-height: 1.6;
}
.sidebar-location span { color: var(--rose-mid); }

/* ── MAIN CONTENT ── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
}

/* ── TOP BAR (mobile only) ── */
.topbar {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 62px; padding: 0 20px;
  align-items: center; justify-content: space-between;
  backdrop-filter: blur(24px);
  background: rgba(15,0,32,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.topbar-brand {
  font-family: 'Great Vibes', cursive; font-size: 1.5rem;
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--rose-mid); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Sidebar overlay for mobile */
.sidebar-overlay {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
}
.sidebar-overlay.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 6vw;
  overflow: hidden;
}
.hero-float-cards { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.float-card {
  position: absolute; border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  animation: floatCard 9s ease-in-out infinite;
}
.float-card img { width:100%; height:100%; object-fit:cover; opacity:0.55; }
.fc1 { width:130px; height:165px; top:14%; left:3%; --rot:-9deg; animation-delay:0s; }
.fc2 { width:115px; height:145px; top:18%; right:4%; --rot:7deg; animation-delay:-3.5s; }
.fc3 { width:105px; height:130px; bottom:18%; left:5%; --rot:5deg; animation-delay:-6s; }
.fc4 { width:120px; height:150px; bottom:20%; right:5%; --rot:-6deg; animation-delay:-1.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0) rotate(var(--rot)); }
  50%      { transform: translateY(-18px) rotate(calc(var(--rot) + 2deg)); }
}

.hero-eyebrow { font-size:0.68rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--rose-mid); margin-bottom:16px; font-weight:300; animation: fadeUp 0.8s ease both; }
.hero-title { font-family:'Great Vibes',cursive; font-size:clamp(3.2rem,9vw,7rem); line-height:1.15; background:linear-gradient(135deg,#ffd6e7 10%,#f9a8d4 35%,#c084fc 65%,#7c3aed 90%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; filter:drop-shadow(0 0 40px rgba(236,72,153,0.3)); animation:fadeUp 0.9s 0.1s ease both; padding-bottom: 0.08em; }
.hero-sub { font-family:'Cormorant Garamond',serif; font-size:clamp(0.95rem,2.4vw,1.35rem); color:rgba(255,255,255,0.6); letter-spacing:0.07em; margin:14px 0 10px; font-style:italic; font-weight:300; animation:fadeUp 0.9s 0.2s ease both; }
.hero-location { font-size:0.7rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--violet-mid); margin-bottom:38px; font-weight:300; animation:fadeUp 0.9s 0.3s ease both; }
.hero-location span { color:var(--rose-mid); }
.hero-cta-group { display:flex; gap:14px; flex-wrap:wrap; justify-content:center; animation:fadeUp 0.9s 0.4s ease both; }

.btn-primary { display:inline-flex; align-items:center; gap:10px; background:linear-gradient(135deg,var(--rose-deep),var(--violet-deep)); color:white; text-decoration:none; padding:13px 32px; border-radius:50px; font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; font-weight:400; box-shadow:0 8px 28px rgba(236,72,153,0.4); transition:transform 0.25s,box-shadow 0.25s; }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 14px 40px rgba(236,72,153,0.55); }
.btn-ghost { display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,0.08); backdrop-filter:blur(16px); border:1px solid var(--glass-border); color:white; text-decoration:none; padding:13px 32px; border-radius:50px; font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; font-weight:300; transition:background 0.25s,transform 0.25s; }
.btn-ghost:hover { background:rgba(255,255,255,0.15); transform:translateY(-3px); }

.hero-scroll { position:absolute; bottom:28px; left:0; right:0; margin-left:auto; margin-right:auto; width:fit-content; display:flex; flex-direction:column; align-items:center; gap:7px; animation:fadeUp 1s 0.8s ease both; }
.scroll-line { width:1px; height:46px; background:linear-gradient(to bottom,var(--rose-mid),transparent); animation:scrollPulse 2s infinite; }
.scroll-text { font-size:0.58rem; letter-spacing:0.28em; color:rgba(255,255,255,0.35); text-transform:uppercase; }
@keyframes scrollPulse { 0%,100%{opacity:0.35;} 50%{opacity:1;} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:translateY(0);} }

/* ── FEATURES STRIP ── */
.features-strip { padding:44px 5vw; display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:16px; }
.feature-pill { display:flex; align-items:center; gap:13px; backdrop-filter:blur(20px); background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12); border-radius:16px; padding:16px 20px; transition:background 0.25s,transform 0.25s; }
.feature-pill:hover { background:rgba(255,255,255,0.11); transform:translateY(-3px); }
.feature-icon { font-size:1.5rem; }
.feature-text { font-size:0.74rem; letter-spacing:0.07em; color:rgba(255,255,255,0.75); font-weight:300; }
.feature-text strong { display:block; color:white; font-weight:400; margin-bottom:2px; font-size:0.82rem; }

/* ── SECTION BASE ── */
section { position:relative; z-index:2; }
.section-header { text-align:center; margin-bottom:52px; }
.section-eyebrow { font-size:0.66rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--rose-mid); margin-bottom:12px; font-weight:300; }
.section-title { font-family:'Great Vibes',cursive; font-size:clamp(2.2rem,5.5vw,4.2rem); background:linear-gradient(135deg,#f9a8d4,#c084fc); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1.1; }
.section-desc { font-family:'Cormorant Garamond',serif; font-size:1.05rem; color:rgba(255,255,255,0.5); font-style:italic; margin-top:10px; font-weight:300; }
.section-divider { width:56px; height:2px; background:linear-gradient(90deg,var(--rose-deep),var(--violet-mid)); margin:16px auto 0; border-radius:2px; }

/* ── CATALOG ── */
.catalog { padding:70px 5vw 90px; }
.catalog-filter { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom:44px; }
.filter-btn { background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.13); color:rgba(255,255,255,0.65); padding:8px 20px; border-radius:50px; font-size:0.7rem; letter-spacing:0.13em; text-transform:uppercase; cursor:pointer; transition:all 0.25s; font-family:'Josefin Sans',sans-serif; font-weight:300; }
.filter-btn.active,.filter-btn:hover { background:linear-gradient(135deg,var(--rose-deep),var(--violet-deep)); border-color:transparent; color:white; box-shadow:0 6px 18px rgba(236,72,153,0.35); }

.catalog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:24px; }

/* ── GLASS CARD ── */
.glass-card { position:relative; backdrop-filter:blur(24px) saturate(1.6); -webkit-backdrop-filter:blur(24px) saturate(1.6); background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:26px; overflow:hidden; transition:transform 0.35s cubic-bezier(0.34,1.56,0.64,1),box-shadow 0.35s; box-shadow:0 8px 36px rgba(124,58,237,0.12),inset 0 1px 0 rgba(255,255,255,0.10); }
.glass-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,0.05) 0%,transparent 60%); pointer-events:none; z-index:1; }
.glass-card:hover { transform:translateY(-9px) scale(1.01); box-shadow:0 22px 56px rgba(236,72,153,0.22),0 8px 28px rgba(124,58,237,0.18),inset 0 1px 0 rgba(255,255,255,0.16); }
.glass-card::after { content:''; position:absolute; inset:0; z-index:0; background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,0.05) 50%,transparent 60%); background-size:200% 100%; opacity:0; transition:opacity 0.3s; pointer-events:none; }
.glass-card:hover::after { opacity:1; animation:shimmer 1.2s ease infinite; }
@keyframes shimmer { 0%{background-position:-200% center;} 100%{background-position:200% center;} }

.card-img-wrap { position:relative; height:230px; overflow:hidden; cursor:pointer; }
.card-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.glass-card:hover .card-img-wrap img { transform:scale(1.07); }
.card-img-overlay { position:absolute; inset:0; background:linear-gradient(to bottom,transparent 50%,rgba(15,0,32,0.68) 100%); }
.card-badge { position:absolute; top:12px; left:12px; z-index:2; background:linear-gradient(135deg,var(--rose-deep),var(--violet-deep)); color:white; font-size:0.6rem; letter-spacing:0.14em; text-transform:uppercase; padding:5px 11px; border-radius:20px; font-weight:400; }

/* Click hint on card images */
.card-img-wrap::after {
  content: '🔍 Ver';
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 3;
  background: rgba(15,0,32,0.7);
  backdrop-filter: blur(8px);
  color: var(--rose-light);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
  font-family: 'Josefin Sans', sans-serif;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.glass-card:hover .card-img-wrap::after {
  opacity: 1;
  transform: translateY(0);
}

.card-body { padding:20px 22px 22px; position:relative; z-index:2; }
.card-title { font-family:'Cormorant Garamond',serif; font-size:1.28rem; font-weight:600; color:white; margin-bottom:7px; letter-spacing:0.02em; }
.card-desc { font-size:0.76rem; color:rgba(255,255,255,0.58); line-height:1.65; font-weight:300; letter-spacing:0.03em; margin-bottom:16px; }
.card-tags { display:flex; gap:7px; flex-wrap:wrap; margin-bottom:16px; }
.tag { font-size:0.6rem; letter-spacing:0.12em; text-transform:uppercase; padding:4px 10px; border-radius:20px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.13); color:var(--violet-light); font-weight:300; }
.card-cta { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,rgba(236,72,153,0.22),rgba(124,58,237,0.22)); border:1px solid rgba(236,72,153,0.32); color:var(--rose-light); text-decoration:none; padding:10px 18px; border-radius:50px; font-size:0.7rem; letter-spacing:0.12em; text-transform:uppercase; transition:background 0.25s,box-shadow 0.25s; font-weight:400; }
.card-cta:hover { background:linear-gradient(135deg,rgba(236,72,153,0.42),rgba(124,58,237,0.38)); box-shadow:0 6px 22px rgba(236,72,153,0.28); }
.card-cta svg { width:13px; height:13px; }

/* Featured card */
.featured-card { grid-column:1/-1; display:grid; grid-template-columns:1fr 1fr; min-height:360px; }
.featured-card .card-img-wrap { height:100%; min-height:280px; }
.featured-card .card-body { display:flex; flex-direction:column; justify-content:center; padding:36px 40px; }
.featured-card .card-title { font-size:1.85rem; margin-bottom:12px; }
.featured-label { font-size:0.6rem; letter-spacing:0.26em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.featured-label::before { content:''; display:block; width:26px; height:1px; background:var(--gold); }
.ingredients-pill { display:inline-flex; align-items:center; gap:5px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.10); border-radius:8px; padding:5px 11px; font-size:0.67rem; color:rgba(255,255,255,0.62); margin-bottom:4px; margin-right:4px; }
.ingredients-pill::before { content:'•'; color:var(--rose-mid); }

/* ── ABOUT ── */
.about { padding:70px 5vw 90px; }
.about-inner { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about-eyebrow { font-size:0.66rem; letter-spacing:0.38em; text-transform:uppercase; color:var(--rose-mid); margin-bottom:14px; }
.about-title { font-family:'Great Vibes',cursive; font-size:clamp(2rem,4.5vw,3.5rem); background:linear-gradient(135deg,#f9a8d4,#c084fc); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1.1; margin-bottom:18px; }
.about-body { font-family:'Cormorant Garamond',serif; font-size:1.02rem; color:rgba(255,255,255,0.62); line-height:1.8; font-weight:300; }
.about-body p+p { margin-top:12px; }
.about-body strong { color:var(--rose-mid); font-weight:400; }
.about-stats { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:32px; }
.stat-card { backdrop-filter:blur(16px); background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.11); border-radius:16px; padding:18px; }
.stat-num { font-family:'Cormorant Garamond',serif; font-size:2.2rem; background:linear-gradient(135deg,var(--rose-mid),var(--violet-mid)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; font-weight:300; }
.stat-label { font-size:0.7rem; letter-spacing:0.12em; color:rgba(255,255,255,0.45); text-transform:uppercase; font-weight:300; }
.about-img-collage { position:relative; height:460px; }
.collage-img { position:absolute; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,0.13); box-shadow:0 14px 36px rgba(0,0,0,0.4); }
.collage-img img { width:100%; height:100%; object-fit:cover; }
.ci1 { width:58%; height:64%; top:0; right:0; }
.ci2 { width:47%; height:54%; bottom:0; left:0; }
.ci3 { width:37%; height:41%; bottom:14%; right:0; }

/* ── GALLERY STRIP (antes de Cómo Pedir) ── */
.gallery-strip {
  padding: 0 5vw 70px;
}
.gallery-strip .section-header {
  margin-bottom: 36px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* Cada tarjeta de galería */
.gallery-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px rgba(124,58,237,0.14);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
  /* Animaciones de entrada escalonadas */
  opacity: 0;
  transform: translateY(40px) scale(0.96);
}
.gallery-item.gi-visible {
  animation: galleryReveal 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.gallery-item:nth-child(1) { animation-delay: 0s; }
.gallery-item:nth-child(2) { animation-delay: 0.13s; }
.gallery-item:nth-child(3) { animation-delay: 0.26s; }

@keyframes galleryReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(236,72,153,0.28), 0 8px 30px rgba(124,58,237,0.2);
}

/* La imagen ocupa el ancho completo, altura natural (sin recorte) */
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* Overlay degradado al hover */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(15,0,32,0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  transform: translateY(10px);
  transition: transform 0.35s ease;
}
.gallery-item-desc {
  font-size: 0.7rem;
  color: var(--rose-light);
  letter-spacing: 0.08em;
  font-weight: 300;
  transform: translateY(10px);
  transition: transform 0.35s ease 0.05s;
}
.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-desc {
  transform: translateY(0);
}

/* Ícono de expandir */
.gallery-expand-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15,0,32,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-expand-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose-light);
  fill: none;
  stroke-width: 2;
}
.gallery-item:hover .gallery-expand-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── HOW TO ORDER ── */
.how-to { padding:70px 5vw 90px; }
.steps-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:22px; max-width:860px; margin:0 auto; }
.step-card { text-align:center; backdrop-filter:blur(20px); background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.11); border-radius:22px; padding:34px 22px; transition:transform 0.3s,box-shadow 0.3s; }
.step-card:hover { transform:translateY(-6px); box-shadow:0 18px 46px rgba(236,72,153,0.18); }

/* CAMBIO: Paso 1/2/3 en lugar de 01/02/03 */
.step-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--rose-mid);
  background: rgba(236,72,153,0.10);
  border: 1px solid rgba(236,72,153,0.25);
  border-radius: 50px;
  display: inline-block;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.step-title { font-size:0.82rem; letter-spacing:0.13em; text-transform:uppercase; color:white; margin-bottom:9px; font-weight:400; }
.step-desc { font-size:0.77rem; color:rgba(255,255,255,0.52); line-height:1.65; font-weight:300; }
.step-icon { font-size:1.9rem; margin-bottom:12px; }

/* ── CTA SECTION ── */
.cta-section { padding:70px 5vw 90px; text-align:center; }
.cta-box { max-width:700px; margin:0 auto; backdrop-filter:blur(28px) saturate(1.6); background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.15); border-radius:32px; padding:56px 44px; box-shadow:0 24px 72px rgba(124,58,237,0.18),inset 0 1px 0 rgba(255,255,255,0.11); position:relative; overflow:hidden; }
.cta-box::before { content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background:conic-gradient(from 0deg,transparent,rgba(236,72,153,0.05),transparent,rgba(124,58,237,0.05),transparent); animation:rotateConic 14s linear infinite; pointer-events:none; }
@keyframes rotateConic { to{transform:rotate(360deg);} }
.cta-title { font-family:'Great Vibes',cursive; font-size:clamp(1.9rem,4.5vw,3.2rem); background:linear-gradient(135deg,#ffd6e7,#c084fc); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:14px; }
.cta-desc { font-family:'Cormorant Garamond',serif; font-size:1.05rem; color:rgba(255,255,255,0.55); font-style:italic; margin-bottom:8px; }
.cta-location { font-size:0.7rem; letter-spacing:0.2em; color:var(--violet-mid); text-transform:uppercase; margin-bottom:34px; }
.whatsapp-btn { display:inline-flex; align-items:center; gap:11px; background:linear-gradient(135deg,#25d366,#128c7e); color:white; text-decoration:none; padding:15px 38px; border-radius:50px; font-size:0.82rem; letter-spacing:0.1em; text-transform:uppercase; font-weight:400; font-family:'Josefin Sans',sans-serif; box-shadow:0 8px 28px rgba(37,211,102,0.32); transition:transform 0.25s,box-shadow 0.25s; }
.whatsapp-btn:hover { transform:translateY(-3px); box-shadow:0 14px 40px rgba(37,211,102,0.46); }
.whatsapp-btn svg { width:20px; height:20px; fill:white; }
.cta-note { font-size:0.67rem; color:rgba(255,255,255,0.3); margin-top:14px; letter-spacing:0.08em; }

/* ── FOOTER ── */
footer { position:relative; z-index:2; border-top:1px solid rgba(255,255,255,0.08); padding:44px 5vw 28px; text-align:center; background:rgba(15,0,32,0.55); backdrop-filter:blur(20px); }
.footer-logo { font-family:'Great Vibes',cursive; font-size:2rem; background:linear-gradient(135deg,var(--rose-mid),var(--violet-mid)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:12px; }
.footer-tagline { font-family:'Cormorant Garamond',serif; font-size:0.92rem; color:rgba(255,255,255,0.38); font-style:italic; margin-bottom:24px; }
.footer-links { display:flex; justify-content:center; gap:26px; flex-wrap:wrap; margin-bottom:24px; }
.footer-links a { font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.38); text-decoration:none; transition:color 0.25s; font-weight:300; }
.footer-links a:hover { color:var(--rose-mid); }
.footer-copy { font-size:0.62rem; color:rgba(255,255,255,0.22); letter-spacing:0.1em; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity:0; transform:translateY(36px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6,0,18,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.lightbox-backdrop.lb-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: min(90vw, 820px);
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(236,72,153,0.12),
    inset 0 1px 0 rgba(255,255,255,0.10);
  transform: scale(0.88) translateY(30px);
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), opacity 0.38s ease;
  opacity: 0;
  backdrop-filter: blur(28px);
}
.lightbox-backdrop.lb-open .lightbox-inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 62vh;
  overflow: hidden;
  background: rgba(15,0,32,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 62vh;
  display: block;
}

.lightbox-info {
  padding: 22px 28px 26px;
  background: linear-gradient(to bottom, rgba(15,0,32,0.4), rgba(15,0,32,0.7));
}
.lightbox-badge {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-mid);
  margin-bottom: 8px;
  font-weight: 300;
}
.lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.lightbox-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 18px;
}
.lightbox-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Josefin Sans', sans-serif;
  box-shadow: 0 6px 22px rgba(37,211,102,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.lightbox-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.44); }
.lightbox-cta svg { width: 16px; height: 16px; fill: white; }

.lightbox-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(15,0,32,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(236,72,153,0.35);
  transform: scale(1.1) rotate(90deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .fc1,.fc2,.fc3,.fc4 { display:none; }
}

@media (max-width: 860px) {
  :root { --sidebar-w: 0px; }
  .sidebar { transform: translateX(-280px); width: 280px; }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; padding-top: 62px; }
  .topbar { display: flex; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .card-img-wrap { height: 220px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-collage { height: 280px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .lightbox-img-wrap { max-height: 50vh; }
  .lightbox-info { padding: 18px 20px 22px; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 36px 20px; }
  .hero { padding: 80px 5vw 90px; }
  .hero-title { font-size: clamp(3.6rem, 14vw, 4.8rem); }
  .steps-grid { grid-template-columns: 1fr; }
  .lightbox-backdrop { padding: 12px; }
  .lightbox-inner { border-radius: 20px; }
}
