/*
Theme Name: Alquipanel
Theme URI: https://alquipanel.com
Author: Alquipanel
Author URI: https://alquipanel.com
Description: Tema personalizado para Alquipanel — Diseño, fabricación y alquiler de stands y mobiliario para eventos en Colombia. Diseño Apple-style con hero slideshow, ticker de clientes y animaciones de scroll.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alquipanel
Tags: custom, full-width-template, landing-page
*/

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C01A1A;
  --orange: #E84040;
  --gray: #555555;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --mid: #2a2a2a;
  --light: #f5f5f7;
  --white: #ffffff;
  --text-secondary: #86868b;
  --nav-h: 52px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
nav.light {
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo img { height: 28px; display: block; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
nav.light .nav-links a { color: rgba(255,255,255,0.85); }
nav.light .nav-links a:hover { color: #fff; }
.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: 20px;
}
.nav-social a {
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-social a:hover { color: #fff; }
nav.light .nav-social a { color: rgba(255,255,255,0.65); }
nav.light .nav-social a:hover { color: #fff; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 980px;
  font-weight: 500 !important;
  font-size: 13px !important;
  transition: background 0.2s, opacity 0.2s !important;
}
.nav-cta:hover { background: #9e1515 !important; color: #fff !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Slideshow background */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 24s infinite;
  will-change: opacity;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }

@keyframes heroSlide {
  0%        { opacity: 0; }
  4%        { opacity: 1; }
  22%       { opacity: 1; }
  26%       { opacity: 0; }
  100%      { opacity: 0; }
}

/* Dark overlay on top of slides */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.65) 100%),
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(192,26,26,0.22) 0%, transparent 70%);
}

.hero-bg { display: none; }
.hero-noise { display: none; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 900px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--orange) 0%, var(--red) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 980px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(192,26,26,0.35);
}
.btn-primary:hover {
  background: #9e1515;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(192,26,26,0.45);
}
.btn-ghost {
  color: rgba(255,255,255,0.9);
  padding: 14px 32px;
  border-radius: 980px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.hero-stands {
  display: flex;
  gap: 24px;
  margin-top: 80px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 1.1s forwards;
}
.hero-stand-img {
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}
.hero-stand-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.hero-stand-img img { width: 100%; display: block; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  z-index: 2;
  animation: fadeIn 1s 2s forwards;
}
.hero-scroll-hint span {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: bounce 1.8s ease-in-out infinite;
}

/* ── STATS TICKER ── */
.stats-bar {
  background: var(--light);
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 400;
}

/* ── SECTION BASE ── */
section { position: relative; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
  margin-top: 16px;
}

/* ── SERVICES LINEUP ── */
.services-intro {
  background: var(--white);
  padding: 100px 24px 60px;
  text-align: center;
}
.services-intro .section-title { max-width: 700px; margin: 0 auto; }
.services-intro .section-sub { margin: 16px auto 0; }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  background: #e0e0e0;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  flex: 0 1 calc(33.333% - 2px);
  background: var(--white);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: var(--light); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.service-icon.red { background: linear-gradient(135deg, var(--red), #8a1010); }
.service-icon.orange { background: linear-gradient(135deg, var(--orange), #c02020); }
.service-icon.gray { background: linear-gradient(135deg, #555, #333); }
.service-card-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.service-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card-list li {
  font-size: 14px;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}
.service-card-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 12px;
}
.service-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 8px; }

/* ── CLIENTS / BRANDS ── */
.clients-section {
  background: var(--dark2);
  padding: 80px 0 72px;
  overflow: hidden;
}
.clients-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 52px;
}
.clients-header .section-eyebrow { color: var(--orange); }
.clients-header .section-title { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.clients-header .section-sub { color: rgba(255,255,255,0.45); margin: 12px auto 0; font-size: 16px; }

.ticker-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark2), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark2), transparent);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 80px;
  flex-shrink: 0;
}
.ticker-item img {
  height: 36px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.25s, filter 0.25s;
}
.ticker-item img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(232,64,64,0.4));
}
.ticker-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  align-self: center;
  flex-shrink: 0;
}

/* ── FURNITURE SECTION ── */
.furniture-section {
  background: var(--dark);
  padding: 100px 24px;
  color: #fff;
}
.furniture-header {
  text-align: center;
  margin-bottom: 72px;
}
.furniture-header .section-title { color: #fff; }
.furniture-header .section-sub { color: rgba(255,255,255,0.5); margin: 16px auto 0; }
/* ── FURNITURE 3D CAROUSEL ── */
#mobiliario.furniture-section {
  overflow: hidden;
  position: relative;
}
#mobiliario.furniture-section::before,
#mobiliario.furniture-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 15;
  pointer-events: none;
}
#mobiliario.furniture-section::before {
  left: 0;
  background: linear-gradient(to right, var(--dark) 20%, transparent);
}
#mobiliario.furniture-section::after {
  right: 0;
  background: linear-gradient(to left, var(--dark) 20%, transparent);
}
.fcar-wrap {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 44px 64px 80px;
}
.fcar-counter {
  position: absolute;
  top: 0;
  right: 64px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.fcar-counter span { color: rgba(255,255,255,0.65); }
.fcar-stage {
  perspective: 1100px;
  perspective-origin: 50% 42%;
  position: relative;
  height: 440px;
  overflow: visible;
}
.fcard {
  position: absolute;
  top: 0;
  left: 50%;
  width: 280px;
  margin-left: -140px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.55s ease,
    box-shadow 0.55s ease;
  will-change: transform, opacity;
  user-select: none;
  background: var(--mid);
  border: 1px solid rgba(255,255,255,0.05);
}
.fcard.is-active {
  box-shadow:
    0 32px 80px rgba(0,0,0,0.72),
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 60px rgba(192,26,26,0.12);
  border-color: rgba(255,255,255,0.12);
}
.fcard-img {
  height: 306px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.55);
}
.fcard-img img {
  max-width: 100%;
  max-height: 266px;
  object-fit: contain;
  transition: transform 0.45s ease;
}
.fcard.is-active .fcard-img img { transform: scale(1.04); }
.fcard-info { padding: 18px 22px 22px; }
.fcard-cat {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 6px;
  font-weight: 600;
}
.fcard-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.fcar-btn {
  position: absolute;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(20,20,20,0.85);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  backdrop-filter: blur(10px);
}
.fcar-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.fcar-prev { left: 0; }
.fcar-next { right: 0; }
.fcar-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  align-items: center;
  z-index: 20;
}
.fcar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.fcar-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}
.furniture-cta {
  text-align: center;
  margin-top: 56px;
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px 36px;
  border-radius: 980px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
}

/* ── FERIAS CAROUSEL ── */
.ferias-section {
  background: var(--dark2);
  padding: 100px 24px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.ferias-section::before,
.ferias-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 15;
  pointer-events: none;
}
.ferias-section::before { left: 0; background: linear-gradient(to right, var(--dark2) 20%, transparent); }
.ferias-section::after  { right: 0; background: linear-gradient(to left,  var(--dark2) 20%, transparent); }

.feria-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 300px;
  margin-left: -150px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.55s ease,
    box-shadow 0.55s ease;
  will-change: transform, opacity;
  user-select: none;
  background: #151515 center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
}
.feria-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.52) 55%, rgba(0,0,0,0.62) 100%);
  z-index: 0;
  pointer-events: none;
}
.feria-card.is-active {
  box-shadow:
    0 32px 80px rgba(0,0,0,0.72),
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 60px rgba(192,26,26,0.1);
  border-color: rgba(255,255,255,0.12);
}
.feria-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.feria-content { position: relative; z-index: 1; }
.feria-type {
  display: inline-block;
  background: rgba(192,26,26,0.18);
  border: 1px solid rgba(192,26,26,0.35);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.feria-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.feria-city {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

/* f2-dot shares fcar-dot style */
.f2-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.f2-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .ferias-section::before,
  .ferias-section::after { width: 40px; }
  .feria-card { width: 240px; height: 300px; margin-left: -120px; padding: 24px 22px; }
  .feria-name { font-size: 18px; }
}

/* ── STANDS SECTION ── */
.stands-section {
  background: var(--light);
  padding: 100px 24px;
}
.stands-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.stands-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.stands-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
  align-items: start;
}
.option-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.option-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.option-slider {
  position: relative;
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #fff;
}
.option-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.option-slider .slide.active {
  opacity: 1;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.42);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 34px;
  text-align: center;
  z-index: 3;
  transition: background 0.2s;
}
.slider-btn:hover { background: rgba(0,0,0,0.75); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.4);
}
.option-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 980px;
  margin-bottom: 16px;
}
.option-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.option-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── EXPERIENCE SECTION ── */
.experience-section {
  min-height: 80vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.exp-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.exp-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark));
}
.exp-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  color: #fff;
}
.exp-content .section-eyebrow { color: var(--orange); }
.exp-content .section-title { color: #fff; }
.exp-content .section-sub { color: rgba(255,255,255,0.5); max-width: none; }
.exp-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.exp-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.exp-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(192,26,26,0.15);
  border: 1px solid rgba(192,26,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.exp-feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.exp-feature-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ── DIFFERENTIATORS ── */
.diff-section {
  background: var(--white);
  padding: 100px 24px;
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.diff-header { text-align: center; margin-bottom: 72px; }
.diff-header .section-sub { margin: 16px auto 0; }
.diff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.diff-card {
  flex: 0 1 280px;
}
.diff-card {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  border-color: var(--red);
}
.diff-num {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.diff-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.diff-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── FERIAS / EVENTS ── */
.ferias-section {
  background: var(--dark2);
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}
.ferias-section .section-eyebrow { color: var(--orange); }
.ferias-section .section-title { color: #fff; margin: 0 auto; max-width: 700px; }
.ferias-scroll {
  display: flex;
  gap: 16px;
  margin-top: 56px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}
.ferias-scroll::-webkit-scrollbar { display: none; }
.feria-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 10px 20px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.feria-pill:hover {
  background: rgba(192,26,26,0.15);
  border-color: rgba(192,26,26,0.4);
  color: #fff;
}

/* ── PROCESS ── */
.process-section {
  background: var(--light);
  padding: 100px 24px;
}
.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.process-header { text-align: center; margin-bottom: 72px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 32px 24px;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(192,26,26,0.3);
}
.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--dark);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(192,26,26,0.14) 0%, transparent 70%);
}
.cta-section h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.05;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section h2 span {
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section p {
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  margin: 24px auto 0;
  max-width: 480px;
  position: relative;
  line-height: 1.5;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
  position: relative;
}
.btn-large {
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 700;
}
.contact-strip {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 72px;
  flex-wrap: wrap;
  position: relative;
}
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-item-icon { font-size: 28px; }
.contact-item-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-item-value {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--red);
  color: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .service-card { flex: 1 1 100%; padding: 48px 36px; }
  .stands-header { grid-template-columns: 1fr; gap: 40px; }
  .experience-section { grid-template-columns: 1fr; }
  .exp-visual { min-height: 300px; }
  .exp-overlay { background: linear-gradient(to bottom, transparent 50%, var(--dark)); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stands-options { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-stands { flex-direction: column; align-items: center; }
  .hero-stand-img { width: 100%; max-width: 340px; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .nav-links { display: none; }
  .exp-content { padding: 48px 24px; }
  /* service cards: full-width stacked, content centered */
  .service-card { padding: 36px 24px; gap: 16px; align-items: center; text-align: center; }
  .service-card-list { align-self: center; text-align: left; }
  .service-card-title { font-size: 21px; }
  .services-intro { padding: 72px 20px 40px; }
  /* carousel mobile */
  .fcar-wrap { padding: 32px 0 72px; }
  .fcar-stage { height: 340px; }
  .fcard { width: 220px; height: 300px; margin-left: -110px; border-radius: 16px; }
  .fcard-img { height: 220px; padding: 16px; }
  .fcard-img img { max-height: 190px; }
  .fcard-info { padding: 14px 18px 16px; }
  .fcard-name { font-size: 14px; }
  .fcar-btn { display: none; }
  .fcar-counter { display: none; }
  #mobiliario.furniture-section::before,
  #mobiliario.furniture-section::after { width: 40px; }
}
