/* ============================================
   RESTAWA - Landing Page Styles
   Fresca, dinámica, divertida
   ============================================ */

:root {
  /* Colores principales */
  --teal: #53999f;
  --teal-light: #6bb5bc;
  --teal-dark: #3d7a7f;
  --navy: #162535;
  --coral: #c35151;
  --coral-light: #e07272;

  /* Fondos */
  --bg: #ffffff;
  --bg-alt: #f8fbfc;
  --bg-price: linear-gradient(135deg, #f0f9fa 0%, #fef6f4 100%);

  /* Texto */
  --text: #1a2836;
  --text-soft: #4a5d6e;
  --text-muted: #7a8d9c;

  /* UI */
  --border: rgba(22, 37, 53, 0.1);
  --shadow-sm: 0 4px 20px rgba(22, 37, 53, 0.08);
  --shadow-md: 0 12px 40px rgba(22, 37, 53, 0.12);
  --shadow-lg: 0 24px 60px rgba(22, 37, 53, 0.15);
  --shadow-teal: 0 12px 35px rgba(83, 153, 159, 0.35);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Topbar (announcement) */
  --topbar-h: 36px;
}

@media (max-width: 520px) {
  :root { --topbar-h: 34px; }
}

/* ============================================
   TOP ANNOUNCEMENT BAR
   ============================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 110;
  height: var(--topbar-h);
  background: linear-gradient(90deg, rgba(22,37,53,.96), rgba(83,153,159,.96), rgba(195,81,81,.94));
  border-bottom: 1px solid rgba(22, 37, 53, 0.08);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.topbar-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.topbar-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 100%;
  white-space: nowrap;
  animation: topbar-marquee 26s linear infinite;
}

.topbar-item {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.topbar-sep {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

@keyframes topbar-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 520px) {
  .topbar-item { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .topbar-track {
    animation: none;
    padding-left: 0;
  }
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   DECORATIVE BLOBS
   ============================================ */

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(83, 153, 159, 0.4) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: blob1 20s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(195, 81, 81, 0.3) 0%, transparent 70%);
  top: 300px;
  right: -200px;
  animation: blob2 25s ease-in-out infinite;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(83, 153, 159, 0.25) 0%, transparent 70%);
  bottom: 200px;
  left: 10%;
  animation: blob3 22s ease-in-out infinite;
}

@keyframes blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, 50px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(0.95); }
  66% { transform: translate(20px, -40px) scale(1.05); }
}

@keyframes blob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
}

/* ============================================
   HEADER & NAV
   ============================================ */

.header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-logo {
  transition: transform 0.2s ease;
}

.nav-brand:hover .brand-logo {
  transform: rotate(-5deg) scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-soft);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(83, 153, 159, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 4px;
  transition: all 0.25s ease;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn svg {
  transition: transform 0.25s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(83, 153, 159, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: white;
  border-color: rgba(83, 153, 159, 0.3);
}

.btn-nav {
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  font-size: 14px;
}

.btn-nav:hover {
  background: #1e3348;
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 100px;
  min-height: calc(100vh - 80px);
}

.hero-content {
  max-width: 560px;
}

/* Hero Tags - Animated badges */
.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: white;
  border: 2px solid var(--teal);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-dark);
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  animation: tagAppear 0.5s ease forwards;
}

.hero-tag svg {
  color: var(--teal);
  flex-shrink: 0;
}

.hero-tag.tag-1 {
  animation-delay: 0.1s;
}

.hero-tag.tag-2 {
  animation-delay: 0.3s;
  border-color: var(--coral);
}

.hero-tag.tag-2 svg {
  color: var(--coral);
}

.hero-tag.tag-3 {
  animation-delay: 0.5s;
  border-color: var(--navy);
}

.hero-tag.tag-3 svg {
  color: var(--navy);
}

@keyframes tagAppear {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  60% {
    transform: translateY(-3px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Tag hover effects */
.hero-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83, 153, 159, 0.2);
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 50%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 28px;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text);
}

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.price-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-soft);
}

.price-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  border-left: 2px solid var(--border);
}

.price-info span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.trust-icon {
  font-size: 18px;
}

/* Hero Visual - Phone Mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 324px;
}

.phone-shell {
  position: relative;
  width: 100%;
  padding: 12px;
  border-radius: 22px;
  background: #0f1319;
  border: 1px solid #2d3641;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.phone-shell:hover {
  border-color: #3a4450;
}

.phone-shell:fullscreen,
.phone-shell:-webkit-full-screen {
  width: min(100vw, calc(100vh * 9 / 16));
  height: min(100vh, calc(100vw * 16 / 9));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-shell:fullscreen::backdrop {
  background: #000;
}

.phone-shell:fullscreen .phone-video,
.phone-shell:-webkit-full-screen .phone-video {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}

.phone-shell:fullscreen .phone-frame,
.phone-shell:fullscreen .phone-camera,
.phone-shell:fullscreen .phone-side-button,
.phone-shell:-webkit-full-screen .phone-frame,
.phone-shell:-webkit-full-screen .phone-camera,
.phone-shell:-webkit-full-screen .phone-side-button {
  display: none;
}

.phone-shell:focus-visible {
  outline: 3px solid rgba(83, 153, 159, 0.35);
  outline-offset: 4px;
}

.phone-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  background: #000;
}

.phone-camera {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #0a0d12;
  border: 1px solid #727a85;
  box-shadow: 0 0 0 1px rgba(15, 19, 25, 0.85);
  pointer-events: none;
  z-index: 3;
}

.phone-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.phone-side-button {
  position: absolute;
  width: 3px;
  background: #2d3641;
  border-radius: 999px;
  pointer-events: none;
}

.phone-side-button-power {
  right: -3px;
  top: 34%;
  height: 68px;
}

.phone-side-button-volume-up {
  left: -3px;
  top: 27%;
  height: 56px;
}

.phone-side-button-volume-down {
  left: -3px;
  top: 37%;
  height: 56px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(13, 22, 34, 0.95);
  color: #f2f6fb;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(10, 16, 24, 0.35);
}

.cookie-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: #8de7ee;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  min-height: 42px;
  padding: 10px 16px;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-price {
  background: var(--bg-price);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(83, 153, 159, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-desc {
  margin: 0;
  font-size: 18px;
  color: var(--text-soft);
}

/* ============================================
   STEPS (Cómo funciona)
   ============================================ */

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: white;
  font-weight: 800;
  font-size: 14px;
  border-radius: 50%;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

.step p {
  margin: 0;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  color: var(--teal);
  opacity: 0.4;
  padding-top: 60px;
}

.steps-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 40px auto 0;
  padding: 16px 24px;
  background: rgba(83, 153, 159, 0.08);
  border: 1px dashed rgba(83, 153, 159, 0.3);
  border-radius: var(--radius-lg);
}

.steps-note .note-icon {
  font-size: 24px;
}

.steps-note p {
  margin: 0;
  font-size: 15px;
  color: var(--text-soft);
}

/* ============================================
   FEATURES (Ventajas)
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(83, 153, 159, 0.2);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
}

.features-extra {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.extra-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.25s ease;
}

.extra-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(83, 153, 159, 0.3);
}

.extra-icon {
  font-size: 22px;
}

/* ============================================
   SHOWCASE (Plato Preview)
   ============================================ */

.section-showcase {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  overflow: hidden;
}

.showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  direction: rtl; /* Image on left, text on right */
}

.showcase-wrapper > * {
  direction: ltr;
}

.showcase-content .section-tag {
  margin-bottom: 12px;
}

.showcase-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.showcase-desc {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 32px;
}

.showcase-features {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.showcase-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}

/* Diet badges (Vegetarian/Vegan) */
.showcase-icon-diet {
  gap: 4px;
  padding: 4px;
  width: auto;
  min-width: 40px;
}

.diet-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.diet-vegetarian {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.diet-vegan {
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
  box-shadow: 0 2px 8px rgba(0, 150, 136, 0.2);
}

.diet-badge:hover {
  transform: scale(1.1);
}

/* Spicy level indicator */
.showcase-icon-spicy {
  gap: 2px;
  padding: 6px 8px;
  width: auto;
  min-width: 40px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border-color: rgba(255, 152, 0, 0.2);
}

.spicy-pepper {
  width: 14px;
  height: 14px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.spicy-pepper-faded {
  opacity: 0.3;
  filter: grayscale(50%);
}

.showcase-icon-spicy:hover .spicy-pepper {
  transform: rotate(-10deg) scale(1.1);
}

.showcase-icon-spicy:hover .spicy-pepper:nth-child(2) {
  transform: rotate(5deg) scale(1.1);
  transition-delay: 0.05s;
}

.showcase-icon-spicy:hover .spicy-pepper:nth-child(3) {
  transform: rotate(-5deg) scale(1.1);
  transition-delay: 0.1s;
}

.showcase-cta {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-dark);
}

.showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-phone {
  position: relative;
}

.showcase-phone img {
  display: block;
  width: 280px;
  height: auto;
  border-radius: 24px;
}

@media (max-width: 1024px) {
  .showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    direction: ltr;
  }

  .showcase-content {
    text-align: center;
    order: 1;
  }

  .showcase-content .section-title {
    text-align: center;
  }

  .showcase-features {
    max-width: 360px;
    margin: 0 auto 32px;
  }

  .showcase-visual {
    order: 2;
  }

  .showcase-phone img {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .showcase-phone img {
    width: 220px;
  }

  .showcase-features li {
    font-size: 15px;
    gap: 12px;
  }

  .showcase-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  /* Ajustes para iconos compuestos (móvil)
     - Evita que las "badges"/guindillas se salgan del cuadro
     - Mantiene el look del resto de iconos
  */
  .showcase-icon-diet,
  .showcase-icon-spicy {
    min-width: 36px;
    padding: 4px 6px;
    gap: 3px;
  }

  .diet-badge {
    width: 22px;
    height: 22px;
    font-size: 12px;
    border-radius: 7px;
  }

  .spicy-pepper {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .showcase-phone img {
    width: 200px;
  }
}

/* ============================================
   PRICING
   ============================================ */

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  margin-bottom: 12px;
}

.pricing-name {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
}

.pricing-tagline {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--text-soft);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.amount-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.amount-details {
  display: flex;
  flex-direction: column;
}

.amount-currency {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-soft);
}

.amount-period {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}

.meta-highlight {
  color: var(--coral);
  font-weight: 700;
}

.meta-icon {
  font-size: 16px;
}

.pricing-features {
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.pricing-features .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(83, 153, 159, 0.12);
  color: var(--teal);
  font-weight: 800;
  font-size: 12px;
  border-radius: 50%;
}

.pricing-actions {
  margin-bottom: 20px;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.note-icon {
  font-size: 18px;
}

/* ============================================
   CTA FINAL
   ============================================ */

.section-cta {
  background: var(--bg-alt);
}

.cta-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-wrapper .section-title {
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 32px;
}

.cta-perks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.perk-icon {
  font-size: 22px;
}

.cta-wrapper .btn {
  margin-bottom: 16px;
}

.cta-note {
  margin: 0 0 40px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.cta-support {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.cta-support > p {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--text-soft);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 40px 0 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  /* Sin marco */
}

.footer-brand strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.footer-brand span {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-phone {
  color: var(--text-soft) !important;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   DEMOS SECTION
   ============================================ */

.section-demos {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  z-index: 1;
}

.demos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.demo-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.demo-card:hover .demo-arrow {
  transform: translateX(4px);
  color: var(--teal);
}

.demo-card:hover .demo-qr {
  background: var(--teal);
  color: white;
}

.demo-qr {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(83, 153, 159, 0.1);
  border-radius: var(--radius-md);
  color: var(--teal);
  transition: all 0.3s ease;
}

.qr-icon {
  width: 36px;
  height: 36px;
}

.demo-info {
  flex: 1;
}

.demo-type {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(195, 81, 81, 0.1);
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  margin-bottom: 8px;
}

.demo-info h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.demo-info p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.demo-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.demos-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-soft);
}

.qr-pulse {
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  animation: qrPulse 2s ease-in-out infinite;
}

@keyframes qrPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(83, 153, 159, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(83, 153, 159, 0);
    transform: scale(1.1);
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

/* Scroll to Top Button */
.scroll-top-float {
  position: fixed;
  bottom: 172px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(83, 153, 159, 0.4);
  z-index: 99;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-top-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(83, 153, 159, 0.5);
}

.scroll-top-float.visible:hover {
  transform: translateY(0) scale(1.1);
}

.whatsapp-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-100%) translateY(-50%) translateX(-12px);
}

.whatsapp-tooltip {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateX(-100%) translateY(-50%) translateX(-8px);
  padding: 8px 14px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

/* ============================================
   HEART ICON ANIMATION
   ============================================ */

.heart-icon {
  display: inline-block;
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.2); }
  28% { transform: scale(1); }
  42% { transform: scale(1.2); }
  56% { transform: scale(1); }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback móvil: si JS falla, que el contenido NO se quede invisible */
@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-price {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin: 0 auto;
  }

  .phone-mockup {
    width: 298px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-perks {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    padding: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 44px);
    order: 1;
  }

  .hero-subtitle {
    order: 2;
  }

  .hero-tags {
    gap: 8px;
    order: 3;
    margin-top: 24px;
    margin-bottom: 28px;
  }

  .hero-price {
    order: 4;
  }

  .hero-actions {
    order: 5;
  }

  .hero-trust {
    order: 6;
  }

  .hero-tag {
    padding: 8px 14px;
    font-size: 13px;
  }

  .phone-mockup {
    width: 276px;
  }

  .section {
    padding: 70px 0;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 28px;
  }

  .amount-number {
    font-size: 56px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-contact {
    align-items: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .phone-mockup {
    width: 236px;
  }

  .cookie-banner-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cookie-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-tags {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-tag {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .hero-price {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .price-info {
    padding-left: 0;
    border-left: none;
    flex-direction: row;
    gap: 16px;
  }

  .features-extra {
    gap: 10px;
  }

  .extra-card {
    padding: 10px 16px;
    font-size: 14px;
  }

  .demos-grid {
    grid-template-columns: 1fr;
  }

  .demo-card {
    padding: 20px;
  }

  .demo-qr {
    width: 50px;
    height: 50px;
  }

  .qr-icon {
    width: 28px;
    height: 28px;
  }

  .scroll-top-float {
    width: 54px;
    height: 54px;
    bottom: 134px;
    right: 16px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 64px;
    right: 16px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 768px) {
  .demos-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   I18N - Language Dropdown & FOUC Prevention
   ============================================ */

.i18n-loading body {
  visibility: hidden;
}

/* Language Dropdown Container */
.lang-dropdown {
  position: relative;
  z-index: 101;
}

/* Dropdown Toggle Button */
.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}

.lang-dropdown-toggle:hover {
  background: white;
  border-color: rgba(83, 153, 159, 0.4);
  box-shadow: var(--shadow-sm);
}

.lang-dropdown.is-open .lang-dropdown-toggle {
  background: white;
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

/* Flag SVG in toggle */
.lang-dropdown-toggle .lang-flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* Language code text */
.lang-dropdown-toggle .lang-code {
  min-width: 20px;
}

/* Chevron icon */
.lang-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.lang-dropdown.is-open .lang-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  padding: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Language Option Buttons */
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.lang-option:hover {
  background: rgba(83, 153, 159, 0.08);
}

.lang-option.is-active {
  background: rgba(83, 153, 159, 0.12);
  color: var(--teal-dark);
}

.lang-option .lang-flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav {
    flex-wrap: nowrap;
  }

  .nav-brand {
    flex-shrink: 0;
  }

  /* Language dropdown before burger */
  .lang-dropdown {
    order: 1;
    margin-left: auto;
  }

  .nav-toggle {
    order: 2;
    margin-left: 8px;
  }

  .btn-nav {
    order: 3;
  }

  .lang-dropdown-toggle {
    padding: 6px 10px;
  }

  .lang-dropdown-toggle .lang-code {
    display: none;
  }

  .lang-dropdown-toggle .lang-flag {
    width: 22px;
    height: 16px;
  }

  .lang-chevron {
    width: 10px;
    height: 10px;
  }

  .lang-dropdown-menu {
    right: 0;
    min-width: 130px;
  }
}

@media (max-width: 480px) {
  .lang-dropdown-toggle {
    padding: 6px 8px;
  }

  .lang-dropdown-toggle .lang-flag {
    width: 20px;
    height: 15px;
  }
}

/* ============================================
   SCROLL CAROUSEL (Parallax Gallery)
   ============================================ */

.section-carousel {
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
}

.carousel-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.carousel-track:last-child {
  margin-bottom: 0;
}

.carousel-slides {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.carousel-slides img {
  width: 280px;
  height: 175px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.carousel-slides img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* Auto-scroll animations (fallback when JS is disabled or before scroll kicks in) */
.carousel-track-1 .carousel-slides {
  animation: carouselScrollRight 60s linear infinite;
}

.carousel-track-2 .carousel-slides {
  animation: carouselScrollLeft 60s linear infinite;
}

@keyframes carouselScrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes carouselScrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause animation on hover for better UX */
.carousel-track:hover .carousel-slides {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .carousel-slides img {
    width: 240px;
    height: 150px;
  }

  .carousel-slides {
    gap: 16px;
  }

  .section-carousel {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .carousel-slides img {
    width: 200px;
    height: 125px;
    border-radius: var(--radius-md);
  }

  .carousel-slides {
    gap: 12px;
  }

  .carousel-track {
    margin-bottom: 12px;
  }

  .section-carousel {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .carousel-slides img {
    width: 160px;
    height: 100px;
    border-radius: var(--radius-sm);
  }

  .carousel-slides {
    gap: 10px;
  }

  .carousel-track {
    margin-bottom: 10px;
  }

  .section-carousel {
    padding: 30px 0;
  }
}

/* ============================================
   QR PERSONALIZADO SECTION
   ============================================ */

.section-qr-custom {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  overflow: hidden;
}

.qr-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* QR Deck - Card Stack Effect */
.qr-deck {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  perspective: 1200px;
}

.qr-card {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  background: white;
}

.qr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Initial stacked positions - like a fan of cards */
.qr-card-1 {
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg) translateX(-30px);
}

.qr-card-2 {
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
}

.qr-card-3 {
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(12deg) translateX(30px);
}

/* Hover effect on the deck - cards spread out */
.qr-deck:hover .qr-card-1 {
  transform: translate(-50%, -50%) rotate(-18deg) translateX(-80px) translateY(-20px);
  box-shadow: 0 20px 50px rgba(83, 153, 159, 0.3);
}

.qr-deck:hover .qr-card-2 {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-30px) scale(1.05);
  z-index: 4;
  box-shadow: 0 25px 60px rgba(22, 37, 53, 0.25);
}

.qr-deck:hover .qr-card-3 {
  transform: translate(-50%, -50%) rotate(18deg) translateX(80px) translateY(-20px);
  box-shadow: 0 20px 50px rgba(195, 81, 81, 0.3);
}

/* Individual card hover - bring to front */
.qr-card:hover {
  z-index: 10 !important;
  transform: translate(-50%, -50%) rotate(0deg) scale(1.1) !important;
  box-shadow: 0 30px 70px rgba(22, 37, 53, 0.3) !important;
}

/* Subtle floating animation */
.qr-deck {
  animation: deckFloat 6s ease-in-out infinite;
}

@keyframes deckFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* QR Info Side */
.qr-info {
  display: flex;
  align-items: center;
}

.qr-info-content {
  padding: 32px;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.qr-info-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.qr-info-content p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
}

.qr-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-teal);
}

.qr-contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(83, 153, 159, 0.45);
}

.qr-contact-link svg {
  flex-shrink: 0;
}

/* Responsive QR Section */
@media (max-width: 1024px) {
  .qr-showcase {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .qr-deck {
    width: 280px;
    height: 280px;
  }

  .qr-card {
    width: 240px;
    height: 240px;
  }

  .qr-info-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .qr-contact-link {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .qr-deck {
    width: 260px;
    height: 260px;
  }

  .qr-card {
    width: 220px;
    height: 220px;
    border-width: 3px;
  }

  .qr-card-1 {
    transform: translate(-50%, -50%) rotate(-10deg) translateX(-20px);
  }

  .qr-card-3 {
    transform: translate(-50%, -50%) rotate(10deg) translateX(20px);
  }

  .qr-deck:hover .qr-card-1 {
    transform: translate(-50%, -50%) rotate(-15deg) translateX(-60px) translateY(-15px);
  }

  .qr-deck:hover .qr-card-3 {
    transform: translate(-50%, -50%) rotate(15deg) translateX(60px) translateY(-15px);
  }

  .qr-info-content {
    padding: 24px;
  }

  .qr-info-content h3 {
    font-size: 20px;
  }

  .qr-info-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .qr-deck {
    width: 240px;
    height: 240px;
  }

  .qr-card {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
  }

  .qr-card-1 {
    transform: translate(-50%, -50%) rotate(-8deg) translateX(-15px);
  }

  .qr-card-3 {
    transform: translate(-50%, -50%) rotate(8deg) translateX(15px);
  }

  .qr-deck:hover .qr-card-1 {
    transform: translate(-50%, -50%) rotate(-12deg) translateX(-45px) translateY(-10px);
  }

  .qr-deck:hover .qr-card-2 {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-20px) scale(1.03);
  }

  .qr-deck:hover .qr-card-3 {
    transform: translate(-50%, -50%) rotate(12deg) translateX(45px) translateY(-10px);
  }

  .qr-info-content {
    padding: 20px;
  }

  .qr-info-content h3 {
    font-size: 18px;
  }

  .qr-contact-link {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ============================================
   PANEL DE CONTROL SECTION
   ============================================ */

.section-panel {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2a3a 100%);
  overflow: hidden;
  position: relative;
}

.section-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.panel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.panel-content .section-tag {
  margin-bottom: 12px;
  background: rgba(45, 212, 191, 0.15);
  color: var(--teal-light);
}

.panel-content .section-title {
  text-align: left;
  margin-bottom: 20px;
  color: white;
}

.panel-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 36px;
}

/* Panel Features List */
.panel-features {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.panel-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.panel-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  border-radius: var(--radius-md);
  color: white;
  box-shadow: var(--shadow-teal);
}

.panel-feature-text h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: white;
}

.panel-feature-text p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.panel-cta {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-light);
  font-style: italic;
}

/* Panel Visual - Phone with Animation */
.panel-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel-phone-wrapper {
  position: relative;
  width: 320px;
  padding: 20px;
}

/* Drag Indicator */
.drag-indicator {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 10;
  animation: indicatorPulse 3s ease-in-out infinite;
}

.drag-indicator svg {
  animation: dragIconMove 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(22, 37, 53, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(22, 37, 53, 0.5);
  }
}

@keyframes dragIconMove {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  75% {
    transform: translateY(3px);
  }
}

/* Phone Mockup */
.panel-phone {
  width: 280px;
  height: 500px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(22, 37, 53, 0.3),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  margin: 0 auto;
}

.panel-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
}

.panel-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

/* Animated Cards */
.animated-cards {
  position: absolute;
  top: 70px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.animated-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(22, 37, 53, 0.08);
  border: 1px solid rgba(22, 37, 53, 0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-drag-handle {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  grid-template-rows: repeat(3, 4px);
  gap: 3px;
  flex-shrink: 0;
  padding: 4px;
  cursor: grab;
}

.card-drag-handle span {
  width: 4px;
  height: 4px;
  background: #c0c8d0;
  border-radius: 50%;
}

.card-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
}

.card-1 .card-thumb {
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
}

.card-2 .card-thumb {
  background: linear-gradient(135deg, #CD5C5C 0%, #F08080 100%);
}

.card-3 .card-thumb {
  background: linear-gradient(135deg, #FF69B4 0%, #FFB6C1 100%);
}

.card-info {
  flex: 1;
  min-width: 0;
}

.card-badge {
  display: inline-block;
  padding: 3px 8px;
  background: #10B981;
  color: white;
  font-size: 9px;
  font-weight: 800;
  border-radius: 6px;
  margin-bottom: 4px;
}

.card-title {
  height: 10px;
  width: 80%;
  background: linear-gradient(90deg, #e0e5ea 0%, #f0f3f5 100%);
  border-radius: 4px;
  margin-bottom: 6px;
}

.card-price {
  height: 8px;
  width: 40%;
  background: linear-gradient(90deg, #d0d8e0 0%, #e5eaef 100%);
  border-radius: 4px;
}

/* Card Animation - Drag & Drop Effect */
.animated-card {
  animation: cardIdle 4s ease-in-out infinite;
}

.card-1 {
  animation: card1Drag 6s ease-in-out infinite;
  z-index: 3;
}

.card-2 {
  animation: card2Shift 6s ease-in-out infinite;
  z-index: 2;
}

.card-3 {
  animation: card3Shift 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes card1Drag {
  0%, 10% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 15px rgba(22, 37, 53, 0.08);
    z-index: 3;
  }
  15% {
    transform: translateY(0) scale(1.03);
    box-shadow: 0 15px 40px rgba(83, 153, 159, 0.25);
    z-index: 10;
  }
  35% {
    transform: translateY(136px) scale(1.03);
    box-shadow: 0 15px 40px rgba(83, 153, 159, 0.25);
    z-index: 10;
  }
  45%, 100% {
    transform: translateY(136px) scale(1);
    box-shadow: 0 4px 15px rgba(22, 37, 53, 0.08);
    z-index: 1;
  }
}

@keyframes card2Shift {
  0%, 20% {
    transform: translateY(0);
  }
  30%, 100% {
    transform: translateY(-68px);
  }
}

@keyframes card3Shift {
  0%, 25% {
    transform: translateY(0);
  }
  35%, 100% {
    transform: translateY(-68px);
  }
}

/* Cursor Animation */
.cursor-animation {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 20;
  animation: cursorMove 6s ease-in-out infinite;
}

.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(195, 81, 81, 0.4);
}

.cursor-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  opacity: 0.5;
  animation: cursorRing 6s ease-in-out infinite;
}

@keyframes cursorMove {
  0%, 5% {
    top: 95px;
    left: 30px;
    opacity: 0;
  }
  10% {
    top: 95px;
    left: 30px;
    opacity: 1;
  }
  15% {
    top: 95px;
    left: 30px;
  }
  35% {
    top: 230px;
    left: 30px;
  }
  40% {
    top: 230px;
    left: 30px;
    opacity: 1;
  }
  45%, 100% {
    top: 230px;
    left: 30px;
    opacity: 0;
  }
}

@keyframes cursorRing {
  0%, 10% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  12% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  15%, 35% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.3;
  }
  40% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  45%, 100% {
    opacity: 0;
  }
}

/* Floating Badges */
.panel-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.badge-fast {
  top: 80px;
  right: -20px;
  color: var(--coral);
  animation: badgeFloat 4s ease-in-out infinite;
}

.badge-fast svg {
  color: var(--coral);
}

.badge-easy {
  bottom: 120px;
  left: -30px;
  color: var(--teal-dark);
  animation: badgeFloat 4s ease-in-out infinite 1s;
}

.badge-easy svg {
  color: var(--teal);
}

.badge-mobile {
  bottom: 40px;
  right: -10px;
  color: var(--navy);
  animation: badgeFloat 4s ease-in-out infinite 2s;
}

.badge-mobile svg {
  color: var(--navy);
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Panel Section Responsive */
@media (max-width: 1024px) {
  .panel-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .panel-content {
    text-align: center;
    order: 1;
  }

  .panel-content .section-title {
    text-align: center;
  }

  .panel-feature {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }

  .panel-visual {
    order: 2;
  }

  .panel-cta {
    display: block;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .panel-phone-wrapper {
    width: 280px;
  }

  .panel-phone {
    width: 240px;
    height: 430px;
    border-radius: 32px;
    padding: 10px;
  }

  .panel-phone::before {
    width: 60px;
    height: 20px;
    top: 10px;
  }

  .panel-screen {
    border-radius: 26px;
  }

  .animated-cards {
    top: 60px;
    left: 10px;
    right: 10px;
    gap: 10px;
  }

  .animated-card {
    padding: 10px;
    border-radius: 12px;
  }

  .card-thumb {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .card-badge {
    font-size: 8px;
    padding: 2px 6px;
  }

  @keyframes card1Drag {
    0%, 10% {
      transform: translateY(0) scale(1);
      box-shadow: 0 4px 15px rgba(22, 37, 53, 0.08);
      z-index: 3;
    }
    15% {
      transform: translateY(0) scale(1.03);
      box-shadow: 0 15px 40px rgba(83, 153, 159, 0.25);
      z-index: 10;
    }
    35% {
      transform: translateY(114px) scale(1.03);
      box-shadow: 0 15px 40px rgba(83, 153, 159, 0.25);
      z-index: 10;
    }
    45%, 100% {
      transform: translateY(114px) scale(1);
      box-shadow: 0 4px 15px rgba(22, 37, 53, 0.08);
      z-index: 1;
    }
  }

  @keyframes card2Shift {
    0%, 20% {
      transform: translateY(0);
    }
    30%, 100% {
      transform: translateY(-57px);
    }
  }

  @keyframes card3Shift {
    0%, 25% {
      transform: translateY(0);
    }
    35%, 100% {
      transform: translateY(-57px);
    }
  }

  @keyframes cursorMove {
    0%, 5% {
      top: 80px;
      left: 25px;
      opacity: 0;
    }
    10% {
      top: 80px;
      left: 25px;
      opacity: 1;
    }
    15% {
      top: 80px;
      left: 25px;
    }
    35% {
      top: 195px;
      left: 25px;
    }
    40% {
      top: 195px;
      left: 25px;
      opacity: 1;
    }
    45%, 100% {
      top: 195px;
      left: 25px;
      opacity: 0;
    }
  }

  .badge-fast {
    right: -10px;
    top: 60px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .badge-easy {
    left: -15px;
    bottom: 100px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .badge-mobile {
    right: -5px;
    bottom: 30px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .drag-indicator {
    padding: 8px 14px;
    font-size: 12px;
  }

  .panel-feature-icon {
    width: 42px;
    height: 42px;
  }

  .panel-feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .panel-feature-text h4 {
    font-size: 16px;
  }

  .panel-feature-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .panel-phone-wrapper {
    width: 260px;
    padding: 15px;
  }

  .panel-phone {
    width: 220px;
    height: 400px;
    border-radius: 28px;
  }

  .panel-phone::before {
    width: 50px;
    height: 18px;
  }

  .panel-screen {
    border-radius: 22px;
  }

  .animated-cards {
    top: 55px;
    left: 8px;
    right: 8px;
    gap: 8px;
  }

  .animated-card {
    padding: 8px;
    border-radius: 10px;
    gap: 8px;
  }

  .card-drag-handle {
    gap: 2px;
  }

  .card-drag-handle span {
    width: 3px;
    height: 3px;
  }

  .card-thumb {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .card-title {
    height: 8px;
  }

  .card-price {
    height: 6px;
  }

  @keyframes card1Drag {
    0%, 10% {
      transform: translateY(0) scale(1);
      z-index: 3;
    }
    15% {
      transform: translateY(0) scale(1.02);
      z-index: 10;
    }
    35% {
      transform: translateY(100px) scale(1.02);
      z-index: 10;
    }
    45%, 100% {
      transform: translateY(100px) scale(1);
      z-index: 1;
    }
  }

  @keyframes card2Shift {
    0%, 20% {
      transform: translateY(0);
    }
    30%, 100% {
      transform: translateY(-50px);
    }
  }

  @keyframes card3Shift {
    0%, 25% {
      transform: translateY(0);
    }
    35%, 100% {
      transform: translateY(-50px);
    }
  }

  .cursor-animation {
    display: none;
  }

  .badge-fast,
  .badge-easy,
  .badge-mobile {
    padding: 6px 10px;
    font-size: 11px;
  }

  .badge-fast svg,
  .badge-easy svg,
  .badge-mobile svg {
    width: 14px;
    height: 14px;
  }

  .badge-fast {
    top: 50px;
    right: -5px;
  }

  .badge-easy {
    left: -10px;
    bottom: 90px;
  }

  .badge-mobile {
    right: 0;
    bottom: 25px;
  }

  .drag-indicator {
    padding: 6px 12px;
    font-size: 11px;
    top: -5px;
  }

  .drag-indicator svg {
    width: 16px;
    height: 16px;
  }

  .panel-features {
    gap: 20px;
  }

  .panel-feature {
    gap: 12px;
  }

  .panel-feature-icon {
    width: 38px;
    height: 38px;
  }

  .panel-feature-icon svg {
    width: 18px;
    height: 18px;
  }
}
