/* ========================================
   SONOIRA LANDING - Merged CSS Styles
   ======================================== */

/* ========================================
   1. CSS VARIABLES / DESIGN TOKENS
   ======================================== */

:root {
  --color-primary: #d85600;
  --color-primary-dark: #c44d00;
  --color-primary-light: #e07030;
  --color-secondary: #0f172a;
  --color-accent: #00b4d8;
  --color-bg: #fafafa;
  --color-text: #334155;
  --color-light-gray: #f0f0f0;
  --color-white: #ffffff;
  --color-glass: rgba(255, 255, 255, 0.7);
  --color-glass-border: rgba(255, 255, 255, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

.glass {
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-glass);
}

/* AOS Animation Baseline — Desactivado para carga instantánea */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ========================================
    2. RESET & BASE
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* --- Focus Visible --- */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ========================================
   3. TYPOGRAPHY / CONTAINER
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* SEO & Semantic Polish */
h1, h2, h3, h4 {
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.2;
}

/* ========================================
   4. BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #c44d00;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: #009fc2;
  transform: scale(1.05);
}

.btn-top-gap { margin-top: 1.5rem; }
.btn-top-gap-sm { margin-top: 1rem; }
.btn-block { width: 100%; }

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-white {
  background: white !important;
  color: #d85600 !important;
}

.btn-white:hover {
  background: #fdfdfd !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.b2b-hipoacusia-note {
  font-size: 0.875rem;
  color: #666;
  margin-top: 1rem;
  grid-column: 1 / -1;
}

.valores-heading {
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

/* ========================================
   5. HEADER / NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.header.sticky {
  background: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 45px;
  width: auto;
  mix-blend-mode: multiply;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-menu .nav-cta {
  color: var(--color-white) !important;
}

.nav-menu .nav-cta::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--color-secondary);
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: #0a0e17;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-new.webp') no-repeat center center/cover;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: 1;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.8) 0%,
    rgba(15, 23, 42, 0.4) 100%
  );
  z-index: 2;
}

.hero-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  max-width: 90vw;
  max-height: 90vw;
  z-index: 4;
  pointer-events: none;
  animation: none;
}

@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content > * {
  opacity: 1;
  transform: none;
}

.hero-eyebrow {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(216, 86, 0, 0.15);
  border: 1px solid rgba(216, 86, 0, 0.3);
  border-radius: 50px;
  color: var(--color-primary-light);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
}

.hero-slogan {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-checklist,
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-checklist .divider,
.hero-trust .divider {
  color: var(--color-primary);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  z-index: 10;
  opacity: 0;
  animation: hero-scroll-enter 1.2s ease-out forwards 1.4s;
}

.hero-scroll:hover {
  animation: floatSimple 2s infinite;
}

/* Hero Waves */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 8;
  pointer-events: none;
}

.waves {
  position: relative;
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 150px;
  display: block;
}

.parallax > use {
  animation: none !important;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-new.webp') center center / cover no-repeat;
  z-index: 1;
}

/* ========================================
   7. PROBLEMA / TU SALUD
   ======================================== */

/* --- Problema Section (original) --- */
.problema {
  padding: 5rem 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.problema::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 50% 50%, rgba(216,86,0,0.03) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: pulse-bg 10s ease-in-out infinite alternate;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problema-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.problema-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.problema-card svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2px;
}

.problema-card h4 {
  color: var(--color-secondary);
}

/* --- Problema Compact Grid --- */
.problema-grid.compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.problema-grid.compact .problema-card {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.problema-grid.compact .problema-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.problema-grid.compact h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--color-secondary);
}

/* --- Tu Salud Dark Premium --- */
.problema-dark {
  background: #0a0e17;
  padding: 12rem 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.frequency-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
}

.freq-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: none;
}

.spotlight-halo {
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 86, 0, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.problema-flex-container {
  display: flex;
  align-items: center;
  gap: 8rem;
  position: relative;
  z-index: 10;
}

.problema-text-side {
  flex: 1;
}

.dark-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: white;
}

.dark-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1.6;
}

.glow-orange {
  color: var(--color-primary);
  text-shadow: 0 0 20px rgba(216, 86, 0, 0.5);
}

.impact-indicator {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2.5rem;
  background: rgba(216, 86, 0, 0.08);
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(216, 86, 0, 0.25);
  border-left: 4px solid var(--color-primary);
  max-width: fit-content;
}

.impact-indicator p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.indicator-icon {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.problema-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.mini-impact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mini-impact-card i {
  color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mini-impact-card:hover {
  background: rgba(216, 86, 0, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.problema-video-wrapper {
  flex: 1;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/16;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(216, 86, 0, 0.3);
  box-shadow: var(--shadow-premium);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.problema-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.problema-grid-wrapper {
  flex: 1;
  position: relative;
}

.grid-context-label {
  position: absolute;
  top: -3rem;
  left: 0;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.problema-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.impact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition-smooth);
  color: white;
}

.impact-card-title {
  color: white;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.impact-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.impact-icon i {
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

/* --- Hipoacusia Section --- */
.hipoacusia {
  padding: 6rem 0;
  background: var(--color-white);
}

.hipoacusia-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hipoacusia-content .main-text {
  font-size: 1.25rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.feature-item i {
  color: var(--color-primary);
  width: 20px;
}

.hipoacusia-image .image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hipoacusia-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-primary);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 200px;
  animation: float 5s ease-in-out infinite;
}

.floating-card .number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.floating-card .text {
  font-size: 0.875rem;
  line-height: 1.3;
}

/* ========================================
   8. SOLUCION SECTION
   ======================================== */

.solucion {
  position: relative;
  padding: 6rem 0;
  background: var(--color-secondary);
  color: var(--color-white);
  overflow: hidden;
}

.solucion.dark-bg {
  background: #1a1a2e;
  padding: 6rem 0;
  color: white;
}

.solucion.dark-bg h2 { color: white; margin-bottom: 0.5rem; }

.accent-text { color: var(--color-primary); font-weight: 600; font-size: 1.1rem; margin-bottom: 1.5rem; }

.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
}

.solucion-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.solucion-text h2 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.solucion-text .subtitle {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.solucion-text p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

.solucion-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.solucion-stats-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(216,86,0,0.2);
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

.stat-item:hover {
  border-color: var(--color-primary);
  background: rgba(216,86,0,0.05);
}

.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 2s; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.stat-card-premium {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.stat-card-premium:hover {
  transform: translateX(-10px);
  border-right: 8px solid var(--color-primary);
}

.stat-card-premium i {
  color: var(--color-primary);
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

.stat-card-premium .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-card-premium .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}

/* ========================================
   9. SERVICIOS
   ======================================== */

.servicios {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.servicios::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 50% 50%, rgba(216,86,0,0.03) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: pulse-bg 10s ease-in-out infinite alternate;
}

.section-header-premium {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.section-header-premium h2 {
  font-size: 3.5rem;
  color: var(--color-secondary);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.section-header-premium h2 strong {
  color: var(--color-primary);
}

.section-header-premium p {
  font-size: 1.3rem;
  color: #64748b;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.badge-accent {
  background: rgba(216, 86, 0, 0.06);
  color: var(--color-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.servicios-capsules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-capsule {
  background: white;
  padding: 2rem;
  border-radius: 25px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
}

.service-capsule:hover {
  transform: translateY(-12px);
  border-color: var(--color-primary);
  box-shadow: 0 25px 50px rgba(216, 86, 0, 0.08);
}

.capsule-icon {
  width: 60px;
  height: 60px;
  background: #fff8f4;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.capsule-icon i {
  color: var(--color-primary);
  width: 24px;
  height: 24px;
  z-index: 2;
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-capsule:hover .icon-glow {
  opacity: 0.15;
}

.service-capsule h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-secondary);
}

.service-capsule p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.capsule-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(216, 86, 0, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

/* --- Original Servicios Grid (kept for backwards compatibility) --- */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servicio-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.servicio-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2px;
}

.servicio-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.servicio-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* ========================================
   10. TESTIMONIALS
   ======================================== */

/* --- Testimonials Infinite Slider (Original) --- */
.testimonials-slider-container {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.testimonials-slider {
  overflow: hidden;
  padding: 2rem 0;
  width: 100%;
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonials-track .testimonial-card {
  width: 350px;
  flex-shrink: 0;
  margin: 0 1rem;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.quote-icon {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.avatar {
  width: 45px;
  height: 45px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.info strong { display: block; color: var(--color-secondary); }
.info span { font-size: 0.85rem; color: #777; }

.stars {
  display: flex;
  gap: 4px;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin: 0;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--color-secondary);
}

.testimonial-author span {
  font-size: 0.875rem;
  color: #888;
}

.star-filled {
  fill: #FFD700 !important;
  color: #FFD700 !important;
}

/* --- Testimonios Premium Infinite Marquee --- */
.testimonios-premium-infinite {
  padding: 10rem 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.soundwave-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 200px;
  opacity: 0.03;
  pointer-events: none;
}

.testimonials-marquee-wrapper {
  margin-top: 2rem;
  padding: 60px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  overflow: hidden;
  position: relative;
}

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

.testimonials-marquee {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.testimonials-marquee:hover {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
}

.testimonial-card-v2 {
  width: 420px;
  min-width: 420px; /* Evita que se aplasten */
  flex-shrink: 0;
  background: white;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(216, 86, 0, 0.1);
  border-color: rgba(216, 86, 0, 0.2);
}

.stars-row {
  display: flex;
  gap: 0.25rem;
  color: #ffc107;
  margin-bottom: 1.5rem;
}

.stars-row i {
  width: 18px;
  height: 18px;
  fill: #ffc107;
}

.stars-row svg path {
  fill: #ffc107;
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonial-quote strong {
  color: var(--color-primary);
  font-weight: 700;
  font-style: normal;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.author-info strong { display: block; color: var(--color-secondary); }
.author-info span { font-size: 0.8rem; color: #94a3b8; }

.verified-badge {
  position: absolute;
  right: 0;
  background: #e2f2ff;
  color: #0070f3;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.social-proof-seal {
  position: absolute;
  top: 180px;
  right: 8%;
  z-index: 100;
  background: var(--color-primary);
  color: white;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 40px rgba(216, 86, 0, 0.4);
  animation: floatBadge 6s ease-in-out infinite;
  border: 4px solid white;
}

.seal-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.seal-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* ========================================
   11. B2B SECTION
   ======================================== */

.b2b {
  padding: 5rem 0;
  background: var(--color-white);
}

.b2b-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.b2b-text h2 {
  margin-bottom: 1.5rem;
}

.b2b-quote {
  background: var(--color-light-gray);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
}

.b2b-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.b2b-stat-card {
  background: var(--color-bg);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border-left: 4px solid var(--color-primary);
  transition: var(--transition);
}

.b2b-stat-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.big-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.b2b-stat-card p {
  font-size: 0.875rem;
  color: #555;
  margin: 0.5rem 0 0;
}

/* --- B2B Premium --- */
.b2b-premium {
  padding: 10rem 0;
  background: #fcfcfc;
}

.b2b-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8rem;
  align-items: center;
}

.b2b-info-side h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.b2b-stats-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* --- B2B Modern Grid (original alt) --- */
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-stack {
  position: relative;
  height: 450px;
}

.image-stack img {
  position: absolute;
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 5px solid white;
}

.image-stack .img-1 {
  top: 0;
  left: 0;
  z-index: 2;
}

.image-stack .img-2 {
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(5deg);
}

.b2b-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

/* ========================================
   12. NOSOTROS SECTION
   ======================================== */

.nosotros {
  padding: 10rem 0;
  background: white;
}

.nosotros-grid-premium {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.nosotros-pretitle {
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 1rem;
}

.nosotros-main-title {
  font-size: 3rem;
  color: var(--color-secondary);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.nosotros-main-title strong {
  color: var(--color-primary);
  font-weight: 800;
}

.nosotros-lead {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.specialist-card-glass {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 2.5rem;
}

.card-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 8px;
  background: var(--color-primary);
}

.specialist-card-glass h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--color-secondary);
}

.specialist-rank {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1.25rem;
}

.nosotros-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.n-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(216, 86, 0, 0.05);
  border: 1px solid rgba(216, 86, 0, 0.1);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.n-feature:hover {
  background: rgba(216, 86, 0, 0.1);
  transform: translateY(-2px);
}

.n-feature i {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.nosotros-visual-premium {
  position: relative;
}

.image-aura-frame {
  position: relative;
  z-index: 1;
  animation: floatImage 8s ease-in-out infinite;
  max-width: 400px;
  margin: 0 auto;
}

.aura-spinner {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 86, 0, 0.08) 0%, transparent 70%);
  animation: pulseAura 8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.image-container {
  border-radius: 41% 59% 41% 59% / 54% 39% 61% 46%;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(216, 86, 0, 0.25);
  transform: none;
  border: 10px solid white;
  position: relative;
  z-index: 2;
}

.specialist-img-main {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.experience-badge-float {
  position: absolute;
  bottom: 10%;
  right: -5%;
  background: var(--color-primary);
  color: white;
  padding: 1.5rem;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: floatBadgeSafe 6s ease-in-out infinite !important;
  min-width: 120px;
  z-index: 10;
}

.experience-badge-float.secondary {
  bottom: auto;
  top: 15%;
  right: auto;
  left: -10%;
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  animation: floatBadge 7s ease-in-out infinite reverse;
}

.experience-badge-float.secondary .exp-txt {
  color: #555;
}

.exp-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: -5px;
}

.exp-txt {
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

/* --- Original Nosotros Grid --- */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.nosotros-text h2 {
  margin-bottom: 1.5rem;
}

.nosotros-text > p {
  color: #555;
  margin-bottom: 2rem;
}

.nosotros-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.valores-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.valor-item {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.valor-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.valor-item p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.valores-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.valor-chip {
  background: var(--color-bg);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-secondary);
  border: 1px solid rgba(0,0,0,0.05);
}

/* --- Specialist Section --- */
.specialist {
  padding: 6rem 0;
  background: var(--color-bg);
}

.specialist-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.specialist-image {
  display: flex;
  justify-content: center;
}

.specialist-image .image-wrapper {
  background: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  width: 300px;
  height: 300px;
}

.specialist-image .image-wrapper:hover {
  box-shadow: 0 12px 40px rgba(216, 86, 0, 0.25);
}

.specialist-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.specialist-image:hover img {
  transform: scale(1.05);
}

.specialist-text .eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specialist-text h2 {
  font-size: 3rem;
  margin: 0.5rem 0;
}

.specialist-text .title {
  font-size: 1.25rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 2rem;
}

.specialist-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.badge i {
  color: var(--color-primary);
  width: 18px;
  height: 18px;
}

.specialist-bio-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  border-left: 4px solid var(--color-primary);
}

.specialist-bio-box h3 { margin-bottom: 0.5rem; color: var(--color-secondary); }
.specialist-title { color: var(--color-primary); font-weight: 700; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }

/* ========================================
   13. FAQ SECTION
   ======================================== */

.faq {
  padding: 5rem 0;
  background: var(--color-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-light-gray);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 1.5rem;
}

.faq-answer-content {
  padding-bottom: 1.25rem;
  color: #555;
  line-height: 1.7;
}

/* --- FAQ Glassmorphism --- */
.faq-glass-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-glass-list .faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-glass-list .faq-item.active {
  background: white;
  box-shadow: var(--shadow-lg);
}

.faq-glass-list .faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
}

.faq-glass-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 2rem;
}

.faq-glass-list .faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* --- FAQ Premium --- */
.faq-premium {
  padding: 10rem 0;
  background: white;
}

.faq-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.faq-item-v2 {
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item-v2.active {
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.faq-question-v2 {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.faq-question-v2 i {
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item-v2.active .faq-question-v2 i {
  transform: rotate(45deg);
}

.faq-answer-v2 {
  max-height: 0;
  padding: 0 2rem;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #64748b;
  line-height: 1.7;
}

.faq-item-v2.active .faq-answer-v2 {
  max-height: 200px;
  padding-bottom: 2rem;
}

/* ========================================
   14. CONTACTO SECTION
   ======================================== */

.contacto {
  padding: 5rem 0;
  background: var(--color-secondary);
  color: var(--color-white);
}

.contacto h2 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 0.5rem;
}

.contacto-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3rem;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contacto-form {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-item svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

.info-item h4 {
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.info-item p {
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.contacto-map {
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.contacto-map iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-md);
  border: none;
}

/* --- Contacto Premium --- */
.contacto-premium {
  background: #0a0e17;
  padding: 12rem 0;
  color: white;
}

.contacto-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.contacto-form-box {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  padding: 5rem;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}

.contacto-form-box h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 800;
}

.contacto-intro {
  color: rgba(255,255,255,0.85);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.contacto-details {
  display: grid;
  gap: 2rem;
}

.detail-item {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: var(--transition-smooth);
}

.detail-item:hover {
  transform: translateX(15px);
  background: rgba(255,255,255,0.06);
}

.detail-item i {
  color: var(--color-primary);
  width: 32px;
  height: 32px;
}

.detail-item strong { display: block; font-size: 1.3rem; margin-bottom: 0.25rem; }
.detail-item p { color: rgba(255,255,255,0.6); }

.contact-geo-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-primary);
  display: none;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-geo-info i {
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.contacto-details .detail-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  width: 100%;
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.08);
}

.form-group select option {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* Form Validation */
.field-error {
  color: #f44336;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

/* Toast Notifications */
.form-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  z-index: 10000;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.form-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.form-toast--success {
  background: #25D366;
  color: white;
}

.form-toast--info {
  background: var(--color-secondary);
  color: white;
}

.form-toast--error {
  background: #f44336;
  color: white;
}

/* ========================================
   15. CTA BANNER
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, #d85600 0%, #c44d00 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"><circle cx="3" cy="3" r="3"/><circle cx="13" cy="13" r="3"/></g></svg>');
  opacity: 0.2;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 { color: white; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.2rem; }

.special-offer {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px dashed rgba(255,255,255,0.3);
  max-width: 600px;
}

.special-offer i { color: #FFD700; flex-shrink: 0; }
.special-offer span { text-align: left; font-size: 1rem; line-height: 1.4; }

/* ========================================
   16. SOCIAL HUB
   ======================================== */

/* --- Social Hub (Original) --- */
.social-hub {
  padding: 10rem 0;
  background: white;
}

.social-hub-header {
  text-align: left;
  margin-bottom: 2rem;
}

.social-hub-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.social-hub-header p {
  color: var(--color-text);
  font-size: 1rem;
}

.social-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.social-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-card {
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.social-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
}

.social-icon svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.social-icon.fb { background: #1877F2; }
.social-icon.tk { background: #000000; }

.social-icon.tk svg {
  display: block;
  margin: auto;
}

.btn-social {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.fb-card .btn-social { background: #1877F2; color: white; }
.tk-card .btn-social { background: #000000; color: white; }

.video-featured {
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-featured video {
  width: 100%;
  display: block;
}

.social-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 350px;
}

.social-video video {
  width: 100%;
  display: block;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-list .social-card {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 1.5rem 2rem;
  gap: 1.5rem;
}

.social-list .social-icon {
  margin: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.social-list h3 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.social-list p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.social-list .btn-social {
  margin-top: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

/* --- Social Hub Premium --- */
.social-grid-premium {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 6rem;
  align-items: center;
}

.social-video-side {
  position: relative;
}

.video-mockup {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  border: 6px solid white;
}

.video-preview {
  width: 100%;
  display: block;
  filter: brightness(0.8);
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.play-icon {
  width: 80px;
  height: 80px;
  color: white;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.3));
}

.social-links-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.social-card-v2 {
  background: white;
  padding: 2.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
  position: relative;
}

.social-card-v2:hover {
  transform: translateX(15px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.social-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon-box.fb { background: #1877f2; color: white; }
.social-icon-box.tk { background: #000000; color: white; }

.social-card-info h4 {
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.social-card-info p {
  color: #64748b;
  font-size: 0.95rem;
}

.arrow-icon {
  position: absolute;
  right: 2.5rem;
  color: #cbd5e1;
  width: 20px;
  height: 20px;
}

.social-card-v2:hover .arrow-icon {
  color: var(--color-primary);
  transform: translate(5px, -5px);
}

/* --- Help Social Hub (Fusionado) --- */
.help-social-hub {
  padding: 100px 0;
  background: var(--color-white);
}

.hub-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: flex-start;
}

.section-header-left {
  margin-bottom: 3.5rem;
}

.section-header-left h2 {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-top: 1rem;
}

.faq-accordion-hub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hub-social-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-container-tiktok {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: 9/16;
  max-height: 650px;
  margin: 0 auto;
}

.hub-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-simple {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 5;
}

.geo-badge {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  font-size: 0.95rem;
  color: var(--color-secondary);
  border: 2px solid var(--color-primary);
  animation: floatBadge 5s ease-in-out infinite;
}

.geo-badge strong {
  color: var(--color-primary);
  font-weight: 800;
}

.social-community-header {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.social-community-header h3 {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.social-community-header p {
  font-size: 0.85rem;
  color: #666;
  opacity: 0.8;
}

.social-links-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-btn {
  background: white;
  padding: 1.25rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.05);
}

.social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.social-btn i { width: 24px; height: 24px; }

/* --- Novedades Section --- */
.novedades {
  padding: 6rem 0;
  background: var(--color-bg);
}

.novedades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.novedades-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.novedades-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-content .date {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
}

.card-content h3 {
  margin: 0.75rem 0;
  font-size: 1.5rem;
}

/* ========================================
   17. FOOTER
   ======================================== */

.footer {
  background: #0f172a;
  padding: 4rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

/* ========================================
   18. WHATSAPP FLOAT
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

/* ========================================
   19. ANIMATIONS / KEYFRAMES
   ======================================== */

@keyframes hero-slide-down {
  0%   { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-scroll-enter {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

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

@keyframes move-forever {
  0%   { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

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

@keyframes floatImage {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatBadgeSafe {
  0%, 100% { margin-top: 0; margin-left: 0; }
  50% { margin-top: -20px; margin-left: 5px; }
}

@keyframes pulseAura {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes pulse-bg {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(2%, 2%); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.2); }
}

/* Keyframes movidos arriba */

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

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Staggered animation delays */
.problema-grid .problema-card:nth-child(1) { transition-delay: 0.1s; }
.problema-grid .problema-card:nth-child(2) { transition-delay: 0.2s; }
.problema-grid .problema-card:nth-child(3) { transition-delay: 0.3s; }
.problema-grid .problema-card:nth-child(4) { transition-delay: 0.4s; }
.problema-grid .problema-card:nth-child(5) { transition-delay: 0.5s; }
.problema-grid .problema-card:nth-child(6) { transition-delay: 0.6s; }

.servicios-grid .servicio-card:nth-child(1) { transition-delay: 0.1s; }
.servicios-grid .servicio-card:nth-child(2) { transition-delay: 0.2s; }
.servicios-grid .servicio-card:nth-child(3) { transition-delay: 0.3s; }
.servicios-grid .servicio-card:nth-child(4) { transition-delay: 0.4s; }
.servicios-grid .servicio-card:nth-child(5) { transition-delay: 0.5s; }
.servicios-grid .servicio-card:nth-child(6) { transition-delay: 0.6s; }

/* Floating animations on icons */
.problema-card svg, .servicio-card svg, .info-item svg {
  animation: none;
}

/* ========================================
    20. UTILITIES
   ======================================== */

.icon-primary {
  color: var(--color-primary);
  fill: none !important;
  stroke: var(--color-primary) !important;
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  stroke-width: 2px;
}

.icon-primary svg {
  width: 100%;
  height: 100%;
  fill: none !important;
  stroke: var(--color-primary) !important;
}

/* ========================================
   21. RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Desktop - 1400px+ */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .hero-content {
    max-width: 950px;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* Desktop - 1024px to 1399px */
@media (max-width: 1200px) {
  .servicios-capsules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .b2b-grid-layout {
    gap: 4rem;
  }
  .nosotros-grid-premium {
    gap: 4rem;
  }
  .contacto-main-grid {
    gap: 4rem;
  }
  .testimonial-card-v2 {
    width: 360px;
  }
}

/* Tablet Landscape / Small Desktop - max 1024px */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 600px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-checklist {
    flex-direction: column;
    gap: 0.5rem;
  }

  .solucion-content,
  .b2b-content,
  .nosotros-grid,
  .hipoacusia-grid,
  .b2b-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nosotros-grid-premium,
  .servicios-capsules-grid,
  .problema-flex-container,
  .contacto-main-grid,
  .hub-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem !important;
  }
  .faq-accordion-hub {
    gap: 0.5rem !important;
  }

  .problema-flex-container {
    flex-direction: column;
  }

  .solucion-stats-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nosotros-image {
    order: -1;
  }

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

  .testimonials-marquee-wrapper {
    padding: 1.5rem 0 !important;
    margin-top: 1rem !important;
  }
  .testimonial-card-v2 {
    width: 300px !important;
    min-width: 300px !important;
    padding: 1.5rem !important;
    border-radius: 20px !important;
  }
  .testimonial-quote {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1rem !important;
  }
  .marquee-group {
    gap: 1rem !important;
    padding-right: 1rem !important;
  }
  .stars-row {
    margin-bottom: 0.5rem !important;
  }
  .stars-row i {
    width: 14px !important;
    height: 14px !important;
  }

  .b2b-grid-layout {
    grid-template-columns: 1fr;
  }
  .b2b-info-side h2 {
    font-size: 2.5rem;
  }

  .faq-grid-premium {
    grid-template-columns: 1fr;
    gap: 2rem !important;
  }
  .faq-item-v2 {
    margin-bottom: 0.75rem !important;
    border-radius: 16px !important;
  }
  .faq-question-v2 {
    padding: 1.25rem 1.5rem !important;
  }
  .faq-question-v2 span {
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }
  .faq-answer-v2 p {
    padding: 0 1.5rem 1.25rem !important;
    font-size: 0.9rem !important;
  }
  .section-header-left {
    margin-bottom: 1.5rem !important;
    text-align: center;
  }
  .help-social-hub {
    padding: 2.5rem 0 !important;
  }
  .social-links-compact {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.4rem !important;
    margin-top: 0 !important;
  }
  .social-btn {
    flex: 1 !important;
    padding: 0.8rem 0.5rem !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    border-radius: 12px !important;
  }
  .social-btn span {
    font-size: 0.8rem !important;
  }
  .social-btn svg {
    width: 20px !important;
    height: 20px !important;
  }
  .hub-social-side {
    gap: 0.5rem !important;
  }
  .social-community-header {
    margin: 0.5rem 0 !important;
    text-align: center;
  }
  .social-community-header p {
    margin-bottom: 0 !important;
  }
  .contacto-form-box {
    padding: 1.75rem !important;
    margin-bottom: 0 !important;
  }
  .contacto-details {
    gap: 0.75rem !important;
  }
  .detail-item {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 1.25rem !important;
    gap: 1rem !important;
    border-radius: 16px !important;
  }
  .detail-item svg {
    width: 24px !important;
    height: 24px !important;
    margin-top: 0.25rem !important;
    flex-shrink: 0 !important;
  }
  .detail-item .text strong {
    font-size: 1rem !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
  }
  .detail-item .text p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }
  .n-feature {
    justify-content: center;
  }

  .image-container { transform: none; }
  .experience-badge-float { right: 0; }

  .problema-grid.compact { grid-template-columns: repeat(2, 1fr); }
  .solucion-stats-grid { justify-content: center; }

  .social-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .social-video {
    max-width: 300px;
  }

  .image-stack {
    height: 400px;
    display: flex;
    justify-content: center;
  }
  .image-stack img {
    position: relative;
    width: 45%;
    height: auto;
    margin: 0 -10px;
  }
  .image-stack .img-2 {
    transform: none;
    margin-top: 30px;
  }
}

/* Tablet Portrait - 768px to 991px */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 3rem 0 !important;
  }

  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.15;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .hero-trust .divider {
    display: none;
  }

  /* SERVICIOS HORIZONTAL EN MÓVIL (MANTENIENDO ESTILO PREMIUM) */
  /* SERVICIOS HORIZONTAL EN MÓVIL (MANTENIENDO ESTILO PREMIUM) */
  .servicios-capsules-grid .service-capsule {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    padding: 1.5rem !important;
    gap: 1.25rem !important;
  }
  .servicios-capsules-grid .capsule-icon {
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }
  .servicios-capsules-grid .capsule-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    flex: 1 !important;
  }
  .servicios-capsules-grid .service-capsule h3 {
    margin-top: 0 !important;
    margin-bottom: 0.2rem !important;
  }
  .servicios-capsules-grid .service-capsule p {
    margin-bottom: 0.4rem !important;
    line-height: 1.3 !important;
  }
  .servicios-capsules-grid .service-capsule .capsule-tag {
    margin-top: 0 !important;
  }
  .hero-checklist {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .section-header-premium {
    margin-bottom: 2rem !important;
  }
  .section-header-premium h2 {
    font-size: 2.2rem !important;
    letter-spacing: -0.5px;
  }
  .section-header-premium p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .social-proof-seal {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    margin: -1.5rem auto 1.5rem !important;
    width: 100px !important;
    height: 100px !important;
    z-index: 20 !important;
  }

  .nosotros {
    padding: 2.5rem 0 !important;
  }

  .specialist-card-glass {
    padding: 1.25rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 20px !important;
  }

  .card-content {
    padding: 0 !important;
  }
  .specialist-rank {
    margin-bottom: 1rem !important;
  }

  .nosotros-features {
    gap: 0.5rem !important;
    justify-content: center !important;
  }

  .problema-grid,
  .servicios-grid,
  .valores-list {
    grid-template-columns: 1fr;
  }

  .grid-context-label {
    position: relative;
    top: 0;
    margin-top: 0;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
  }
  .problema-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .dark-title {
    font-size: 2.2rem;
  }

  .servicio-card {
    padding: 1.5rem;
  }

  .solucion-stats-grid {
    gap: 1rem;
  }
  .stat-card-premium {
    padding: 1.5rem;
    max-width: 160px;
  }
  .stat-card-premium .number {
    font-size: 2rem;
  }

  .valores-grid-chips {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .chip {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .testimonials-track {
    gap: 1rem;
  }
  .testimonial-card {
    width: 280px;
    padding: 1.5rem;
  }

  .b2b-images {
    grid-template-columns: 1fr;
  }
  .b2b-info-side h2 {
    font-size: 2rem;
  }
  .stat-card-premium {
    padding: 2rem;
  }
  .stat-number {
    font-size: 3rem;
  }

  .faq-glass-list .faq-item {
    margin-bottom: 0.75rem;
  }
  .faq-question {
    padding: 1rem 0;
    font-size: 1rem;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
  }
  .contacto-form-box {
    padding: 2rem 1.5rem;
    border-radius: 24px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .contacto-main-grid {
    gap: 2rem;
  }
  .detail-item {
    padding: 1.5rem;
    gap: 1rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group input,
  .form-group select {
    padding: 1rem;
    font-size: 1rem;
  }
  .btn-block {
    padding: 1rem;
  }

  .specialist-bio-box {
    padding: 1.5rem;
  }

  .image-aura-frame {
    max-width: 280px;
    margin: 0 auto;
  }
  .aura-spinner {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
  }

  .social-tabs { grid-template-columns: 1fr; }
  .social-grid-premium {
    grid-template-columns: 1fr;
  }
  .social-video-side {
    order: -1;
  }
  .video-container-tiktok {
    max-height: 450px;
  }
  .social-links-compact {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 3rem 0;
  }
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

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

/* Mobile Large - 481px to 767px */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .header {
    padding: 0.6rem 0;
  }
  .logo img {
    height: 36px;
  }

  .mobile-menu {
    width: 85%;
    padding: 4rem 1.5rem 1.5rem;
  }

  .hero {
    min-height: 100svh;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
  }

  .problema-grid.compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .problema-grid.compact .problema-card {
    padding: 1.25rem 1rem;
  }
  .problema-grid.compact .problema-card svg {
    width: 32px;
    height: 32px;
  }
  .problema-grid.compact h4 {
    font-size: 0.85rem;
  }

  .servicios-capsules-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-capsule {
    /* Hereda el flex-row del bloque superior */
    padding: 1.25rem 1rem !important;
  }

  .testimonials-slider-container {
    padding: 1.5rem 0;
  }
  .testimonial-card {
    width: 260px;
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  .avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.75rem;
  }

  .contacto-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .detail-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .detail-item i {
    margin-bottom: 0.5rem;
  }
  .detail-item strong {
    font-size: 1.1rem;
  }
  .contacto-intro {
    font-size: 1rem !important;
  }

  .contacto-map {
    margin-top: 1.5rem;
  }
  .contacto-map iframe {
    height: 250px;
    border-radius: 12px;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }
  .cta-content p {
    font-size: 1rem;
  }

  .faq-glass-list .faq-question {
    font-size: 0.95rem;
    padding: 1rem 0;
  }

  .valores-grid-chips {
    gap: 0.5rem;
  }
  .chip {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }

  .social-btn {
    padding: 1rem;
  }

  .floating-card {
    padding: 1rem;
    max-width: 160px;
    left: -10px;
  }
  .floating-card .number {
    font-size: 1.5rem;
  }

  .image-aura-frame {
    max-width: 240px;
  }
  .experience-badge-float {
    min-width: 100px;
    padding: 1rem;
  }
  .exp-num {
    font-size: 2rem;
  }
}

/* Mobile Small - 320px to 480px */
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 1rem;
  }

  .problema-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .problema-card {
    padding: 1.25rem 0.75rem;
  }
  .problema-card svg {
    width: 40px;
    height: 40px;
  }
  .problema-card h4 {
    font-size: 0.85rem;
  }

  .servicio-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }
  .servicio-icon {
    margin-bottom: 0 !important;
    flex-shrink: 0;
  }
  .servicio-card h3 {
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
  }
  .servicio-card p {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
  }
  .servicio-card svg {
    width: 48px;
    height: 48px;
  }

  .stat-card-premium {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .testimonial-card {
    width: 240px;
    padding: 1.25rem;
  }

  .contacto-form-box {
    padding: 1.75rem 1.25rem;
  }
  .form-group input,
  .form-group select {
    padding: 0.875rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .btn-xl {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }

  .footer {
    padding: 2.5rem 0;
  }
  .footer p {
    font-size: 0.85rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .image-aura-frame {
    max-width: 200px;
  }
  .specialist-img-main {
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .problema-grid.compact { grid-template-columns: 1fr; }
}

/* ========================================
   22. ACCESSIBILITY
   ======================================== */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-scroll,
  .testimonials-track,
  .testimonials-marquee,
  .aura-spinner,
  .experience-badge-float,
  .social-proof-seal,
  .wave-arc,
  .wave-ring,
  .image-wrapper {
    animation: none !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .problema-card:hover,
  .servicio-card:hover,
  .stat-card-premium:hover,
  .b2b-stat-card:hover,
  .testimonial-card:hover {
    transform: none;
  }

  /* Simplificar transiciones en móvil */
  .btn, .nav-menu a, .faq-question-v2 {
    transition-duration: 0.2s !important;
  }

  .faq-question,
  .nav-menu a,
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
  .hero-scroll {
    display: none;
  }
}

/* Print styles */
@media print {
  .header,
  .whatsapp-float,
  .mobile-menu,
  .hero-scroll,
  .aos-init {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero {
    min-height: auto;
    page-break-after: always;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ========================================
   15. PROCESO AUDITIVO (NUEVA SECCIÓN)
   ======================================== */
.proceso-auditivo {
  padding: 10rem 0;
  background: var(--color-white);
  position: relative;
}

.proceso-cta-wrapper {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.proceso-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  z-index: 0;
  opacity: 0.3;
}

.proceso-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 90px;
  height: 90px;
  background: white;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: #cbd5e1;
  transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.proceso-section-active .step-number {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(216, 86, 0, 0.3);
  transform: scale(1.05);
}

.proceso-section-active .proceso-step:nth-child(1) .step-number {
  transition-delay: 0s;
}
.proceso-section-active .proceso-step:nth-child(2) .step-number {
  transition-delay: 0.4s;
}
.proceso-section-active .proceso-step:nth-child(3) .step-number {
  transition-delay: 0.8s;
}
.proceso-section-active .proceso-step:nth-child(4) .step-number {
  transition-delay: 1.2s;
}

.proceso-step:hover .step-number {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(216, 86, 0, 0.2);
}

.proceso-step h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.proceso-step p {
  color: #64748b;
  font-size: 0.95rem;
  padding: 0 1rem;
}

@media (max-width: 991px) {
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .proceso-grid::before { display: none; }
}

@media (max-width: 576px) {
  .proceso-auditivo {
    padding: 2rem 0 !important;
  }
  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .proceso-step h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
  }
  .proceso-step p {
    font-size: 0.9rem;
    padding: 0;
    line-height: 1.35;
  }
}

/* ========================================
   16. CTA FINAL (BLOQUE 7)
   ======================================== */
.cta-final {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1e293b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-new.webp') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white;
  margin-bottom: 1.5rem;
}

.cta-final p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .btn-xl {
  box-shadow: 0 0 30px rgba(216, 86, 0, 0.4);
}

/* ========================================
   MINI-TEST INTERACTIVO
   ======================================== */
.minitest-section {
  padding: 8rem 0;
  background: #fff;
}

.minitest-section .section-header-premium {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.minitest-form {
  max-width: 720px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.minitest-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.minitest-item:hover {
  border-color: rgba(216, 86, 0, 0.4);
}

.minitest-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.minitest-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: all 0.2s ease;
}

.minitest-check::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.minitest-item input[type="checkbox"]:checked ~ .minitest-check {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.minitest-item input[type="checkbox"]:checked ~ .minitest-check::after {
  transform: rotate(45deg) scale(1);
}

.minitest-item:has(input:checked) {
  border-color: var(--color-primary);
}

.minitest-text {
  color: #334155;
  font-size: 1rem;
  line-height: 1.4;
  flex: 1;
}

.minitest-counter {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #64748b;
  font-size: 0.95rem;
}

.minitest-counter-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-right: 0.25rem;
}

.minitest-result {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-bg);
  border: 1px solid rgba(216, 86, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.minitest-result-message {
  color: var(--color-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.minitest-result-message strong {
  color: var(--color-primary);
  font-weight: 700;
}

.minitest-result .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes minitest-slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   MODAL DE PUBLICIDAD
   ======================================== */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: promo-fade 0.25s ease-out;
}

.promo-modal[hidden] {
  display: none;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.promo-modal-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 900px;
  width: 95%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: promo-pop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.promo-modal-close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.05);
}

.promo-modal-body {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.promo-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

.promo-modal-title[hidden] {
  display: none;
}

.promo-modal-counter {
  position: absolute;
  top: 1rem;
  right: 3.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  z-index: 3;
  font-family: var(--font-heading);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.promo-modal-counter[hidden] {
  display: none;
}

.promo-modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  pointer-events: none;
  z-index: 3;
}

.promo-modal-nav[hidden] {
  display: none;
}

.promo-modal-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  color: var(--color-secondary);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.promo-modal-arrow:hover {
  background: #fff;
  transform: scale(1.05);
}

.promo-modal-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 20px 20px 0 0;
  background: #fff;
}

.promo-modal-img[hidden] {
  display: none;
}

.promo-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 1rem 2.5rem;
  margin: 0;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  min-width: 200px;
  justify-content: center;
}

.promo-modal-btn:hover {
  background: #1ebd57;
  color: #fff;
  transform: translateY(-1px);
}

.promo-modal-btn[hidden] {
  display: none;
}

@keyframes promo-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes promo-pop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .promo-modal {
    padding: 0.5rem;
  }
  .promo-modal-body {
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.6rem;
  }
  .promo-modal-title {
    font-size: 1.05rem;
  }
  .promo-modal-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .promo-modal-counter {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    top: 0.5rem;
    right: 2.75rem;
  }
  .promo-modal-arrow {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}
