/*
Theme Name: VOXDATA
Theme URI: https://voxdata.ai
Author: VOXDATA Team
Author URI: https://voxdata.ai
Description: Tema corporativo para VOXDATA - Plataforma de inteligencia de datos y demoscopia digital avanzada. Incluye personalizador para logo, textos, menu, WhatsApp y chatbot de diagnostico. Totalmente responsive.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voxdata
Tags: corporate, data, analytics, responsive, customizer, whatsapp
Requires at least: 5.8
Requires PHP: 7.4
*/

/* ============================================
   VOXDATA - Estilos base del tema
   ============================================ */

/* Reset y base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #212529;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   Variables CSS
   ============================================ */
:root {
  --vox-dark: #002856;
  --vox-dark-2: #043159;
  --vox-mid: #1D60A7;
  --vox-mid-2: #1B5B9E;
  --vox-light: #38B6FF;
  --vox-text: #212529;
  --vox-bg: #F7F9FC;
  --container-max: 1200px;
  --container-narrow: 900px;
}

/* ============================================
   Utilidades
   ============================================ */
.container-vox {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* Text shadow hero */
.text-shadow-hero {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Botones
   ============================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #1D60A7 0%, #38B6FF 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 1rem 2.5rem;
  transition: all 0.3s ease-out;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(56, 182, 255, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #1D60A7;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border: 2px solid #1D60A7;
  transition: all 0.3s;
  text-align: center;
}

.btn-secondary:hover {
  background: #1D60A7;
  color: #ffffff;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  text-align: center;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* ============================================
   Navegacion
   ============================================ */
.vox-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  transition: all 0.3s;
}

.vox-navbar.transparent {
  background: transparent;
}

.vox-navbar.scrolled {
  background: rgba(0, 40, 86, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vox-navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vox-navbar-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.vox-navbar-links {
  display: none;
}

@media (min-width: 768px) {
  .vox-navbar-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.vox-navbar-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  position: relative;
  transition: color 0.3s;
}

.vox-navbar-links a:hover,
.vox-navbar-links a.active {
  color: #38B6FF;
}

.vox-navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #38B6FF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.vox-navbar-links a:hover::after,
.vox-navbar-links a.active::after {
  transform: scaleX(1);
}

.vox-navbar-cta {
  display: none;
}

@media (min-width: 768px) {
  .vox-navbar-cta {
    display: block;
  }
}

.vox-navbar-cta .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* Menu mobile */
.vox-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .vox-menu-toggle {
    display: none;
  }
}

/* Mobile overlay */
.vox-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: #002856;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vox-mobile-overlay.open {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .vox-mobile-overlay {
    display: none;
  }
}

.vox-mobile-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.vox-mobile-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vox-mobile-header img {
  height: 32px;
}

.vox-mobile-close {
  background: none;
  border: none;
  color: #ffffff;
  padding: 0.5rem;
}

.vox-mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.vox-mobile-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #ffffff;
}

.vox-mobile-links a.active {
  color: #38B6FF;
}

.vox-mobile-cta {
  padding-bottom: 2.5rem;
}

.vox-mobile-cta .btn-primary {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   Hero Slider
   ============================================ */
.vox-hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vox-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.vox-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.vox-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.vox-hero-slide:not(.active) {
  opacity: 0;
  transform: scale(1.05);
}

.vox-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vox-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 40, 86, 0.3) 0%, rgba(0, 40, 86, 0.85) 100%);
}

.vox-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem;
  padding-top: 80px;
}

.vox-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vox-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 60vh;
}

@media (min-width: 1024px) {
  .vox-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vox-hero-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #38B6FF;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(56, 182, 255, 0.3);
  background: rgba(56, 182, 255, 0.05);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.vox-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.vox-hero-title-accent {
  display: block;
  color: #38B6FF;
  margin-top: 0.25rem;
}

.vox-hero-typewriter {
  font-family: 'JetBrains Mono', monospace;
  color: rgba(56, 182, 255, 0.9);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  letter-spacing: 0.02em;
  margin-top: 1rem;
  min-height: 1.5em;
}

.vox-hero-desc {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-top: 1.5rem;
  max-width: 500px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .vox-hero-desc {
    font-size: 1.125rem;
  }
}

.vox-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero stats panel */
.vox-hero-stats {
  display: none;
}

@media (min-width: 1024px) {
  .vox-hero-stats {
    display: flex;
    justify-content: flex-end;
  }
}

.vox-hero-stats-inner {
  background: rgba(0, 40, 86, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  max-width: 320px;
}

.vox-hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vox-hero-stat-value {
  font-family: 'JetBrains Mono', monospace;
  color: #38B6FF;
  font-size: 1.75rem;
  font-weight: bold;
}

.vox-hero-stat-label {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.vox-hero-stat-quote {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.vox-hero-stat-quote p {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-style: italic;
}

/* Slider controls */
.vox-slider-controls {
  position: absolute;
  bottom: 8rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.vox-slider-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}

.vox-slider-arrow:hover {
  color: #ffffff;
  border-color: #38B6FF;
  background: rgba(56, 182, 255, 0.1);
}

.vox-slider-dots {
  display: flex;
  gap: 0.75rem;
}

.vox-slider-dot {
  height: 8px;
  border: none;
  padding: 0;
  transition: all 0.5s;
  cursor: pointer;
}

.vox-slider-dot.active {
  width: 40px;
  background: #38B6FF;
}

.vox-slider-dot:not(.active) {
  width: 8px;
  background: rgba(255, 255, 255, 0.4);
}

.vox-slider-dot:not(.active):hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Scroll indicator */
.vox-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vox-scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.vox-scroll-indicator svg {
  color: rgba(255, 255, 255, 0.6);
  animation: bounce-arrow 2s infinite;
}

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

/* Slider animations */
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-slide-in-right {
  animation: slide-in-right 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-in-left {
  animation: slide-in-left 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Cursor blink */
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #38B6FF;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursor-blink 1.06s steps(1) infinite;
}

/* ============================================
   Secciones comunes
   ============================================ */

/* Section label */
.vox-section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1D60A7;
  margin-bottom: 1rem;
  display: block;
}

/* Section title */
.vox-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #212529;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
}

.vox-section-title-white {
  color: #ffffff;
}

/* Section subtitle */
.vox-section-subtitle {
  font-family: 'Inter', sans-serif;
  color: rgba(33, 37, 41, 0.7);
  margin-top: 1rem;
}

.vox-section-subtitle-white {
  color: rgba(255, 255, 255, 0.75);
}

/* Gradient line */
.vox-gradient-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #38B6FF, #1D60A7);
  margin: 1.5rem 0;
}

/* ============================================
   Reveal animations
   ============================================ */
.vox-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vox-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Seccion Problema
   ============================================ */
.vox-problema {
  background: #F7F9FC;
}

.vox-problema-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .vox-problema-grid {
    grid-template-columns: 55% 45%;
  }
}

.vox-problema-text p {
  font-family: 'Inter', sans-serif;
  color: rgba(33, 37, 41, 0.85);
  line-height: 1.7;
}

.vox-problema-text p + p {
  margin-top: 1rem;
  color: rgba(33, 37, 41, 0.7);
}

/* Orbita SVG */
.vox-orbita {
  max-width: 350px;
  margin: 0 auto;
}

.vox-orbita svg {
  width: 100%;
  height: auto;
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vox-orbita-orbit {
  transform-origin: 200px 200px;
  animation: orbit 60s linear infinite;
}

/* ============================================
   Seccion Paradigma
   ============================================ */
.vox-paradigma {
  background: #002856;
  position: relative;
  overflow: hidden;
}

.vox-paradigma-deco {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
}

.vox-paradigma-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .vox-paradigma-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vox-paradigma-box {
  max-width: 500px;
  margin: 3rem auto 0;
  background: rgba(29, 96, 167, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(56, 182, 255, 0.3);
  padding: 1.5rem 2rem;
}

.vox-paradigma-box p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #38B6FF;
  font-size: 1.125rem;
  text-align: center;
}

/* ============================================
   Seccion VOX+DATA
   ============================================ */
.vox-nombre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .vox-nombre-grid {
    grid-template-columns: 1fr auto 1fr;
  }
}

.vox-nombre-plus {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #1D60A7;
  text-align: center;
  display: none;
}

@media (min-width: 768px) {
  .vox-nombre-plus {
    display: block;
  }
}

.vox-nombre-col {
  text-align: center;
}

.vox-nombre-col h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1D60A7;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.vox-nombre-col p {
  font-family: 'Inter', sans-serif;
  color: rgba(33, 37, 41, 0.75);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.vox-nombre-resultado {
  text-align: center;
  margin-top: 4rem;
}

.vox-nombre-resultado-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #38B6FF, transparent);
  width: 100%;
  margin-bottom: 2rem;
}

.vox-nombre-resultado span {
  font-family: 'JetBrains Mono', monospace;
  color: #1D60A7;
  font-size: 1.25rem;
}

.vox-nombre-resultado-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* ============================================
   Seccion Proceso
   ============================================ */
.vox-proceso {
  background: #F7F9FC;
}

.vox-proceso-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .vox-proceso-desktop {
    display: block;
  }
}

.vox-proceso-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .vox-proceso-mobile {
    display: none;
  }
}

.vox-proceso-pipeline {
  display: flex;
  align-items: stretch;
}

.vox-proceso-step {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(29, 96, 167, 0.2);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  transition: all 0.4s;
  clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 8% 50%);
}

.vox-proceso-step:first-child {
  clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
}

.vox-proceso-step:last-child {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 8% 50%);
}

.vox-proceso-step:hover {
  box-shadow: 0 8px 32px rgba(0, 40, 86, 0.12);
  border-color: rgba(56, 182, 255, 0.3);
  transform: translateY(-4px);
}

.vox-proceso-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #38B6FF;
  margin-bottom: 0.25rem;
}

.vox-proceso-step h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #212529;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.vox-proceso-step-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(33, 37, 41, 0.6);
  margin-bottom: 0.5rem;
}

.vox-proceso-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(33, 37, 41, 0.75);
  line-height: 1.5;
}

.vox-proceso-step-line {
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, #38B6FF, #1D60A7);
  opacity: 0;
  transition: opacity 0.4s;
}

.vox-proceso-step:hover .vox-proceso-step-line {
  opacity: 1;
}

/* Mobile proceso */
.vox-proceso-card {
  background: #ffffff;
  border: 1px solid rgba(29, 96, 167, 0.2);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

/* ============================================
   Seccion Diferenciacion (Tabla)
   ============================================ */
.vox-tabla-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}

.vox-tabla {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

.vox-tabla thead th {
  background: #002856;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: left;
  padding: 1rem 1.25rem;
}

.vox-tabla thead th.vox-tabla-highlight {
  border-left: 3px solid #38B6FF;
  background: rgba(56, 182, 255, 0.05);
}

.vox-tabla tbody td {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 1.25rem 1.25rem;
  border: 1px solid rgba(0, 40, 86, 0.1);
  line-height: 1.6;
}

.vox-tabla tbody tr:nth-child(even) td {
  background: #F7F9FC;
}

.vox-tabla tbody td.vox-tabla-highlight {
  border-left: 3px solid #38B6FF;
  background: rgba(56, 182, 255, 0.03);
}

.vox-tabla tbody td strong {
  font-weight: 600;
}

.vox-tabla-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.vox-tabla-check svg {
  color: #38B6FF;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Mobile diferenciacion cards */
.vox-diff-cards {
  display: block;
}

@media (min-width: 768px) {
  .vox-diff-cards {
    display: none;
  }
}

.vox-diff-card {
  background: #F7F9FC;
  padding: 1.25rem;
  border: 1px solid rgba(0, 40, 86, 0.1);
  margin-bottom: 1rem;
}

/* ============================================
   Seccion Sectores
   ============================================ */
.vox-sectores {
  background: #002856;
  position: relative;
  overflow: hidden;
}

.vox-sectores-deco {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}

.vox-sectores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .vox-sectores-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vox-sector-card {
  background: #ffffff;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.vox-sector-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-color: #1D60A7;
}

.vox-sector-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vox-sector-header h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #212529;
  font-size: 1.125rem;
}

.vox-sector-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(33, 37, 41, 0.8);
}

.vox-sector-list svg {
  color: #38B6FF;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.vox-sectores-axes {
  display: none;
}

@media (min-width: 768px) {
  .vox-sectores-axes {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
  }
}

/* ============================================
   Seccion Caso de Exito
   ============================================ */
.vox-caso {
  background: #F7F9FC;
}

.vox-caso-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .vox-caso-grid {
    grid-template-columns: 40% 60%;
  }
}

.vox-caso-metric-value {
  font-family: 'JetBrains Mono', monospace;
  color: #1D60A7;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
}

.vox-caso-metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: rgba(33, 37, 41, 0.7);
  margin-top: 0.75rem;
}

.vox-caso-metric-desc {
  font-family: 'Inter', sans-serif;
  color: rgba(33, 37, 41, 0.8);
  margin-top: 1.25rem;
  line-height: 1.7;
}

.vox-tendencia-card {
  background: #ffffff;
  border-left: 4px solid #38B6FF;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s;
}

.vox-tendencia-card:hover {
  box-shadow: 0 4px 16px rgba(0, 40, 86, 0.1);
}

.vox-tendencia-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #38B6FF;
  letter-spacing: 0.05em;
}

.vox-tendencia-text {
  font-family: 'Inter', sans-serif;
  color: #212529;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ============================================
   Seccion Cierre
   ============================================ */
.vox-cierre {
  background: #002856;
  position: relative;
  overflow: hidden;
}

.vox-cierre-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  opacity: 0.05;
  pointer-events: none;
}

/* ============================================
   Pagina Solucion
   ============================================ */
.vox-proceso-detalle-step {
  padding: 3rem 0;
}

.vox-proceso-detalle-step:nth-child(even) {
  background: #F7F9FC;
}

.vox-proceso-detalle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .vox-proceso-detalle-grid {
    grid-template-columns: 60% 40%;
  }

  .vox-proceso-detalle-grid.reversed {
    grid-template-columns: 40% 60%;
  }
}

.vox-proceso-detalle-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: rgba(56, 182, 255, 0.2);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  user-select: none;
  line-height: 1;
}

.vox-proceso-detalle-img {
  background: #F7F9FC;
  border: 1px solid rgba(29, 96, 167, 0.1);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto;
}

/* Fuentes de datos grid */
.vox-fuentes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .vox-fuentes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vox-fuente-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.vox-fuente-card:hover {
  background: rgba(56, 182, 255, 0.1);
  border-color: rgba(56, 182, 255, 0.3);
}

.vox-fuente-card svg {
  color: #38B6FF;
  margin: 0 auto 0.75rem;
}

.vox-fuente-card span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 0.875rem;
}

/* Entregables grid */
.vox-entregables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vox-entregables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vox-entregables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vox-entregable-card {
  background: #ffffff;
  border: 1px solid rgba(0, 40, 86, 0.1);
  padding: 1.75rem;
  transition: all 0.4s;
}

.vox-entregable-card:hover {
  box-shadow: 0 8px 32px rgba(0, 40, 86, 0.12);
  border-color: rgba(56, 182, 255, 0.3);
  transform: translateY(-4px);
}

.vox-entregable-card svg {
  color: #1D60A7;
  margin-bottom: 1rem;
}

.vox-entregable-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #212529;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.vox-entregable-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(33, 37, 41, 0.75);
  line-height: 1.6;
}

.vox-entregable-line {
  height: 2px;
  background: linear-gradient(90deg, #38B6FF, #1D60A7);
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.vox-entregable-card:hover .vox-entregable-line {
  opacity: 1;
}

/* ============================================
   Pagina Sectores
   ============================================ */
.vox-sectores-matriz .vox-sector-card {
  transition: all 0.3s;
}

.vox-sectores-matriz .vox-sector-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-color: #1D60A7;
}

.vox-sectores-matriz .vox-sector-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.vox-sectores-matriz .vox-sector-header h4 {
  font-size: 1.0625rem;
}

.vox-sectores-matriz .vox-sector-categories {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  color: rgba(33, 37, 41, 0.5);
}

.vox-sectores-matriz .vox-sector-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(33, 37, 41, 0.8);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Casos por sector */
.vox-casos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .vox-casos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vox-caso-card {
  background: #F7F9FC;
  border-left: 4px solid #1D60A7;
  padding: 1.5rem;
}

.vox-caso-card-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1D60A7;
}

.vox-caso-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #212529;
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}

.vox-caso-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(33, 37, 41, 0.8);
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ============================================
   Pagina Caso de Exito
   ============================================ */
.vox-metricas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .vox-metricas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vox-metrica {
  text-align: center;
}

.vox-metrica-value {
  font-family: 'JetBrains Mono', monospace;
  color: #1D60A7;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.vox-metrica-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(33, 37, 41, 0.7);
  margin-top: 0.75rem;
}

/* Tendencias detalladas */
.vox-tendencias-list {
  max-width: 800px;
  margin: 0 auto;
}

.vox-tendencia-detalle {
  background: #ffffff;
  border-left: 4px solid #38B6FF;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.vox-tendencia-detalle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vox-tendencia-detalle-grid {
    grid-template-columns: 70% 30%;
  }

  .vox-tendencia-detalle-grid.reversed {
    grid-template-columns: 30% 70%;
  }
}

.vox-tendencia-insight {
  border-left: 2px solid #1D60A7;
  padding-left: 1rem;
  margin-top: 1rem;
}

.vox-tendencia-insight p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #1D60A7;
  font-size: 0.875rem;
}

.vox-tendencia-num-big {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: rgba(29, 96, 167, 0.15);
  line-height: 1;
  user-select: none;
}

/* Metodologia pipeline */
.vox-metodologia {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.vox-metodologia-item {
  display: flex;
  align-items: center;
}

.vox-metodologia-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.vox-metodologia-step svg {
  color: #1D60A7;
  margin-bottom: 0.5rem;
}

.vox-metodologia-step-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #212529;
  font-size: 0.875rem;
}

.vox-metodologia-step-detail {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(33, 37, 41, 0.6);
}

.vox-metodologia-connector {
  width: 3rem;
  height: 1px;
  background: rgba(29, 96, 167, 0.3);
}

/* Otros casos */
.vox-otros-casos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vox-otros-casos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vox-otro-caso {
  background: #ffffff;
  border: 1px solid rgba(0, 40, 86, 0.1);
  padding: 1.5rem;
  transition: all 0.3s;
}

.vox-otro-caso:hover {
  box-shadow: 0 8px 32px rgba(0, 40, 86, 0.12);
  border-color: #38B6FF;
}

/* Cita */
.vox-cita-section {
  background: #002856;
  padding: 5rem 0;
}

.vox-cita-section blockquote {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  text-align: center;
}

/* ============================================
   Pagina Contacto
   ============================================ */
.vox-contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .vox-contacto-grid {
    grid-template-columns: 60% 40%;
  }
}

.vox-form-group {
  margin-bottom: 1.25rem;
}

.vox-form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #212529;
  margin-bottom: 0.5rem;
}

.vox-form-input,
.vox-form-textarea,
.vox-form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(0, 40, 86, 0.15);
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #212529;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vox-form-input::placeholder,
.vox-form-textarea::placeholder {
  color: rgba(33, 37, 41, 0.4);
}

.vox-form-input:focus,
.vox-form-textarea:focus,
.vox-form-select:focus {
  outline: none;
  border-color: #1D60A7;
  box-shadow: 0 0 0 3px rgba(29, 96, 167, 0.1);
}

.vox-form-input.error,
.vox-form-textarea.error {
  border-color: #ef4444;
}

.vox-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.vox-form-select-wrapper {
  position: relative;
}

.vox-form-select-wrapper svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(33, 37, 41, 0.5);
  pointer-events: none;
}

.vox-form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
}

.vox-form-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.vox-form-success {
  background: #F7F9FC;
  border: 1px solid rgba(29, 96, 167, 0.2);
  padding: 2rem;
  text-align: center;
}

.vox-form-success-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(56, 182, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.vox-form-success-icon svg {
  color: #38B6FF;
}

.vox-form-success h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #212529;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vox-form-success p {
  font-family: 'Inter', sans-serif;
  color: rgba(33, 37, 41, 0.7);
}

/* Contact info */
.vox-contacto-info {
  padding-top: 2rem;
}

@media (min-width: 1024px) {
  .vox-contacto-info {
    padding-left: 2.5rem;
    padding-top: 0;
    border-left: 1px solid rgba(0, 40, 86, 0.1);
  }
}

.vox-contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vox-contacto-item svg {
  color: #1D60A7;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.vox-contacto-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: #212529;
  margin-bottom: 0.25rem;
}

.vox-contacto-item a,
.vox-contacto-item p {
  font-family: 'Inter', sans-serif;
  color: #1D60A7;
}

.vox-contacto-item a:hover {
  text-decoration: underline;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.vox-faq-item {
  border-bottom: 1px solid rgba(0, 40, 86, 0.1);
}

.vox-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #212529;
  font-size: 1rem;
}

.vox-faq-question svg {
  color: #1D60A7;
  flex-shrink: 0;
}

.vox-faq-answer {
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s;
}

.vox-faq-answer-inner {
  padding-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  color: rgba(33, 37, 41, 0.8);
  line-height: 1.7;
}

/* ============================================
   Chatbot WhatsApp
   ============================================ */
.vox-whatsapp-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}

.vox-whatsapp-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}

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

.vox-whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Chat widget */
.vox-chat-widget {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 2rem);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vox-chat-widget.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.vox-chat-header {
  background: linear-gradient(135deg, #002856 0%, #1D60A7 100%);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vox-chat-header-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vox-chat-header-icon svg {
  color: #ffffff;
}

.vox-chat-header-text h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

.vox-chat-header-text p {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.vox-chat-body {
  padding: 1.5rem;
  max-height: 320px;
  overflow-y: auto;
}

.vox-chat-body p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(33, 37, 41, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.vox-chat-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vox-chat-option {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 40, 86, 0.1);
  background: #F7F9FC;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #212529;
  text-align: left;
  transition: all 0.2s;
}

.vox-chat-option:hover {
  background: rgba(56, 182, 255, 0.1);
  border-color: #38B6FF;
  color: #1D60A7;
}

.vox-chat-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0, 40, 86, 0.08);
}

.vox-chat-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.3s;
}

.vox-chat-cta:hover {
  background: #1ea952;
}

/* ============================================
   Footer
   ============================================ */
.vox-footer {
  background: #002856;
  color: #ffffff;
}

.vox-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 5rem 0 3rem;
}

@media (min-width: 768px) {
  .vox-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vox-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vox-footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.vox-footer-logo p {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.vox-footer h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.vox-footer-links li {
  margin-bottom: 0.625rem;
}

.vox-footer-links a {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.vox-footer-links a:hover {
  color: #ffffff;
}

.vox-footer-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.vox-footer-email:hover {
  color: #ffffff;
}

.vox-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .vox-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.vox-footer-bottom p,
.vox-footer-bottom a {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.vox-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ============================================
   Page Header
   ============================================ */
.vox-page-header {
  background: #002856;
  padding: 8rem 0 4rem;
}

.vox-page-header nav {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.vox-page-header nav a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.vox-page-header nav a:hover {
  color: #ffffff;
}

.vox-page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.vox-page-header p {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  margin-top: 1rem;
  max-width: 700px;
}

/* ============================================
   Responsive helpers
   ============================================ */
@media (max-width: 480px) {
  .vox-hero-stats-inner {
    display: none;
  }

  .vox-slider-controls {
    bottom: 6rem;
  }

  .vox-chat-widget {
    width: calc(100vw - 2rem);
    right: -1rem;
  }
}

/* Print styles */
@media print {
  .vox-navbar,
  .vox-whatsapp-chat,
  .vox-scroll-indicator,
  .vox-slider-controls,
  .vox-hero-canvas {
    display: none !important;
  }

  .vox-hero-slide img {
    display: none;
  }
}

/* ============================================
   WordPress Admin Bar fix
   ============================================ */
body.admin-bar .vox-navbar {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .vox-navbar {
    top: 46px;
  }
}
