﻿/* ============================================
   THE ISLAS MOVERS - FUTURISTIC THEME v3
   ============================================ */

:root {
  --azul-primario: #1a73e8;
  --azul-oscuro: #0d47a1;
  --azul-profundo: #0a2463;
  --azul-neon: #00d4ff;
  --gris-oscuro: #1a1a2e;
  --gris-medio: #333344;
  --gris-claro: #c8c8d4;
  --gris-acero: #8a8a9a;
  --gris-humo: #5a5a6a;
  --blanco: #ffffff;
  --negro: #0a0a14;
  --whatsapp: #25d366;
  --whatsapp-hover: #20bd5a;
  --sombra-neon: 0 0 20px rgba(0, 212, 255, 0.3);
  --sombra-gris: 0 4px 20px rgba(0, 0, 0, 0.3);
  --gradiente-neon: linear-gradient(90deg, var(--azul-neon), var(--azul-primario));
  --gradiente-gris: linear-gradient(135deg, var(--gris-oscuro) 0%, var(--gris-medio) 100%);
  --fuente-titulo: 'Orbitron', sans-serif;
  --fuente-texto: 'Rajdhani', sans-serif;
}

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

body {
  font-family: var(--fuente-texto);
  color: var(--gris-claro);
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--negro);
  position: relative;
}

/* GLOBAL ANIMATED BACKGROUND */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(26, 115, 232, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(90, 90, 106, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(10, 10, 20, 0.1) 100%);
  z-index: -3;
  pointer-events: none;
}

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; background: rgba(10, 10, 20, 0.8);
  backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}
.header.scrolled { background: rgba(10, 10, 20, 0.95); box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 45px; border-radius: 8px; }
.logo-text { font-family: var(--fuente-titulo); font-size: 1.2rem; font-weight: 700; color: var(--blanco); }
.logo-text span { color: var(--azul-neon); }
.nav-menu { display: flex; gap: 2rem; }
.nav-menu a {
  color: var(--gris-claro); text-decoration: none; font-family: var(--fuente-titulo);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.3s ease; position: relative; padding: 0.5rem 0;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gradiente-neon); transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--azul-neon); }
.nav-menu a:hover::after { width: 100%; }

.lang-toggle {
  background: transparent; border: 2px solid var(--azul-neon); color: var(--azul-neon);
  padding: 0.5rem 1rem; border-radius: 25px; cursor: pointer;
  font-family: var(--fuente-titulo); font-size: 0.8rem; font-weight: 600;
  transition: all 0.3s ease;
}
.lang-toggle:hover { background: var(--azul-neon); color: var(--negro); box-shadow: var(--sombra-neon); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 10px;
}
.hamburger span { width: 28px; height: 3px; background: var(--azul-neon); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(10, 10, 20, 0.98);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2); padding: 1rem;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block; padding: 1rem; color: var(--gris-claro); text-decoration: none;
  font-family: var(--fuente-titulo); font-size: 0.9rem; text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease;
}
.mobile-nav a:hover { background: rgba(0, 212, 255, 0.1); color: var(--azul-neon); }

/* ===== HERO - ENHANCED ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 100px 20px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(51, 51, 68, 0.9) 40%, rgba(26, 26, 46, 0.95) 100%);
  z-index: -2;
}
.hero-particles { position: absolute; inset: 0; z-index: -1; }

/* Hero decorative orbs */
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.15;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px; background: var(--azul-neon);
  top: -100px; right: -100px; animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px; background: var(--azul-primario);
  bottom: -50px; left: -80px; animation-delay: 3s;
}
.hero-orb-3 {
  width: 200px; height: 200px; background: #00ff88;
  top: 50%; left: 60%; animation-delay: 5s; opacity: 0.08;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Hero grid lines */
.hero-grid-lines {
  position: absolute; inset: 0; z-index: -1; opacity: 0.04;
  background-image:
    linear-gradient(rgba(0, 212, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content { text-align: center; max-width: 950px; z-index: 1; }

.hero-badge {
  display: inline-block; background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--azul-neon); color: var(--azul-neon);
  padding: 0.5rem 1.5rem; border-radius: 25px;
  font-family: var(--fuente-titulo); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3), inset 0 0 5px rgba(0, 212, 255, 0.1); }
  50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.7), inset 0 0 10px rgba(0, 212, 255, 0.2); }
}

.hero h1 {
  font-family: var(--fuente-titulo); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; text-transform: uppercase; line-height: 1.05; margin-bottom: 1.5rem;
  background: linear-gradient(180deg, var(--blanco) 0%, rgba(200,220,255,0.8) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-shadow: none;
  position: relative;
}
.hero h1::after {
  content: ''; display: block; width: 120px; height: 4px; margin: 1rem auto 0;
  background: var(--gradiente-neon); border-radius: 2px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}
.hero h1 .highlight {
  display: block; font-size: 1.3em;
  background: var(--gradiente-neon);
  -webkit-background-clip: text; background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
}

.hero-description {
  font-size: 1.15rem; color: var(--gris-claro); max-width: 650px;
  margin: 0 auto 2rem; opacity: 0.9; line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem;
  border-radius: 50px; font-family: var(--fuente-titulo); font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: all 0.3s ease; border: none;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn-primary { background: var(--whatsapp); color: var(--blanco); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
.btn-primary:hover { background: var(--whatsapp-hover); transform: translateY(-3px); box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5); }
.btn-secondary { background: rgba(0, 212, 255, 0.1); color: var(--azul-neon); border: 2px solid var(--azul-neon); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(0, 212, 255, 0.2); transform: translateY(-3px); box-shadow: var(--sombra-neon); }

/* Hero features bar */
.hero-features-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
  padding: 1rem 2rem; border-radius: 50px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(10px);
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-feat {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--fuente-titulo); font-size: 0.7rem; font-weight: 600;
  color: var(--gris-claro); text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
}
.hero-feat-icon {
  font-size: 1rem; color: var(--azul-neon);
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
}
.hero-feat-divider {
  width: 1px; height: 20px; background: rgba(0, 212, 255, 0.3);
}

/* Hero stats */
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-stat {
  text-align: center; padding: 1rem 1.5rem; border-radius: 12px;
  background: rgba(0, 212, 255, 0.05); border: 1px solid rgba(0, 212, 255, 0.1);
  min-width: 130px; transition: all 0.3s ease;
}
.hero-stat:hover { border-color: var(--azul-neon); background: rgba(0, 212, 255, 0.1); transform: translateY(-5px); }
.hero-stat-value {
  font-family: var(--fuente-titulo); font-size: 2.5rem; font-weight: 900;
  color: var(--azul-neon); text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  display: inline;
}
.hero-stat-suffix {
  font-family: var(--fuente-titulo); font-size: 1.5rem; font-weight: 700;
  color: var(--azul-neon); opacity: 0.7; display: inline;
}
.hero-stat-label {
  font-size: 0.75rem; color: var(--gris-claro); text-transform: uppercase;
  letter-spacing: 1px; opacity: 0.7; margin-top: 0.3rem;
}

/* Hero trust badge */
.hero-trust {
  margin-top: 2rem;
}
.hero-trust-text {
  font-family: var(--fuente-titulo); font-size: 0.75rem; font-weight: 600;
  color: var(--gris-medio); text-transform: uppercase; letter-spacing: 3px;
  position: relative; display: inline-block; padding: 0 2rem;
}
.hero-trust-text::before, .hero-trust-text::after {
  content: ''; position: absolute; top: 50%;
  width: 40px; height: 1px; background: var(--gradiente-neon); opacity: 0.5;
}
.hero-trust-text::before { right: 100%; }
.hero-trust-text::after { left: 100%; }

/* Hero background effects - Premium */
.hero::before {
  content: ''; position: absolute; top: 10%; left: 5%;
  width: 200px; height: 200px; border: 1px solid rgba(0, 212, 255, 0.08);
  transform: rotate(45deg); z-index: -1;
  animation: hex-rotate 20s linear infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: 15%; right: 8%;
  width: 150px; height: 150px; border: 1px solid rgba(0, 212, 255, 0.06);
  transform: rotate(30deg); z-index: -1;
  animation: hex-rotate 25s linear infinite reverse;
}
@keyframes hex-rotate {
  0% { transform: rotate(45deg) scale(1); border-color: rgba(0, 212, 255, 0.08); }
  50% { transform: rotate(225deg) scale(1.1); border-color: rgba(0, 212, 255, 0.15); }
  100% { transform: rotate(405deg) scale(1); border-color: rgba(0, 212, 255, 0.08); }
}

/* Glowing line accents */
.hero-glow-line {
  position: absolute; height: 1px; z-index: -1;
  background: linear-gradient(90deg, transparent, var(--azul-neon), transparent);
  opacity: 0.15;
}
.hero-glow-line-1 { top: 30%; left: 0; right: 0; animation: glow-slide 4s ease-in-out infinite; }
.hero-glow-line-2 { bottom: 25%; left: 0; right: 0; animation: glow-slide 4s ease-in-out infinite 2s; }
@keyframes glow-slide {
  0%, 100% { opacity: 0.05; transform: scaleX(0.5); }
  50% { opacity: 0.2; transform: scaleX(1); }
}

/* Hero radial pulse */
.hero-radial-pulse {
  position: absolute; top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  z-index: -1;
  animation: radial-pulse 4s ease-in-out infinite;
}
@keyframes radial-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gris-claro); opacity: 0.5; font-size: 0.7rem;
  font-family: var(--fuente-titulo); text-transform: uppercase; letter-spacing: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--azul-neon); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--azul-neon); border-radius: 2px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== PROMO BAR - ENHANCED ===== */
.promo-bar {
  padding: 1.2rem 20px; text-align: center;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  background: linear-gradient(90deg, rgba(26,26,46,0.6) 0%, rgba(0,212,255,0.05) 50%, rgba(26,26,46,0.6) 100%);
  backdrop-filter: blur(10px);
}
.promo-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.promo-icon-glow { font-size: 1.8rem; filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5)); }
.promo-title {
  font-family: var(--fuente-titulo); color: var(--azul-neon);
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem;
  display: block;
}
.promo-deals { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: 0.3rem; }
.promo-deal {
  color: #ffc107; font-family: var(--fuente-titulo); font-weight: 700; font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}
.promo-btn {
  padding: 0.6rem 1.5rem; font-size: 0.75rem;
}

/* SECTION COMMON */
.section { padding: 80px 20px; position: relative; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
  display: inline-block; background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--azul-neon); color: var(--azul-neon);
  padding: 0.4rem 1rem; border-radius: 20px;
  font-family: var(--fuente-titulo); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--fuente-titulo); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900; text-transform: uppercase; margin-bottom: 1rem; color: var(--blanco);
}
.section-title span { color: var(--azul-neon); }
.section-subtitle { font-size: 1rem; color: var(--gris-claro); max-width: 600px; margin: 0 auto; opacity: 0.8; }

/* SERVICES - 2 per line */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(26, 26, 46, 0.8); border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 15px; padding: 1.5rem; text-align: center;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradiente-neon); transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--azul-neon); box-shadow: var(--sombra-neon); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; margin: 0 auto 1rem;
  background: rgba(0, 212, 255, 0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border: 2px solid rgba(0, 212, 255, 0.3);
}
.service-title {
  font-family: var(--fuente-titulo); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 0.5rem; color: var(--blanco);
}
.service-description { font-size: 0.85rem; color: var(--gris-claro); opacity: 0.8; }

/* GALLERY - 3 per line */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
  border: 2px solid rgba(0, 212, 255, 0.1); transition: all 0.3s ease;
}
.gallery-item:hover { border-color: var(--azul-neon); transform: scale(1.03); box-shadow: var(--sombra-neon); }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.1); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 20, 0.9) 100%);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { font-family: var(--fuente-titulo); font-size: 0.75rem; font-weight: 600; color: var(--blanco); text-transform: uppercase; }

.gallery-overlay .video-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; background: rgba(0, 212, 255, 0.8);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .video-icon { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95);
  z-index: 2000; display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-content img, .lightbox-content video {
  max-width: 100%; max-height: 85vh; border-radius: 10px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}
.lightbox-close {
  position: absolute; top: -40px; right: 0; background: none; border: none;
  color: var(--blanco); font-size: 2rem; cursor: pointer; transition: color 0.3s ease;
}
.lightbox-close:hover { color: var(--azul-neon); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0, 212, 255, 0.2); border: 1px solid var(--azul-neon);
  color: var(--blanco); width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.5rem; transition: all 0.3s ease;
}
.lightbox-nav:hover { background: var(--azul-neon); color: var(--negro); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* REVIEWS / TESTIMONIALS - 2 per line */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonials-grid .testimonial-card.hidden { display: none; }

/* REVIEWS TOGGLE BUTTON */
.reviews-toggle-btn {
  display: block; margin: 1.5rem auto 0;
  background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--azul-neon); padding: 0.7rem 2rem; border-radius: 25px;
  font-family: var(--fuente-titulo); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  transition: all 0.3s ease;
}
.reviews-toggle-btn:hover {
  background: rgba(0, 212, 255, 0.2); border-color: var(--azul-neon);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.toggle-arrow {
  display: inline-block; margin-left: 0.5rem; transition: transform 0.3s ease;
}
.reviews-toggle-btn.expanded .toggle-arrow { transform: rotate(180deg); }

.testimonial-card {
  background: rgba(26, 26, 46, 0.8); border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 15px; padding: 1.5rem; position: relative; transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: var(--azul-neon); transform: translateY(-5px); }
.testimonial-quote {
  font-size: 2.5rem; color: var(--azul-neon); opacity: 0.3;
  font-family: serif; line-height: 1; margin-bottom: -0.5rem;
}
.testimonial-text {
  font-size: 0.9rem; color: var(--gris-claro); line-height: 1.7;
  margin-bottom: 1rem; font-style: italic;
}
.testimonial-stars { color: #ffc107; font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--gradiente-neon); display: flex; align-items: center; justify-content: center;
  font-family: var(--fuente-titulo); font-weight: 700; color: var(--negro); font-size: 1rem;
}
.testimonial-info h4 { font-family: var(--fuente-titulo); font-size: 0.9rem; font-weight: 700; color: var(--blanco); }
.testimonial-info p { font-size: 0.75rem; color: var(--azul-neon); }

/* ADD REVIEW FORM */
.add-review-box {
  margin-top: 3rem; padding: 2rem; border-radius: 15px;
  background: rgba(26, 26, 46, 0.6); border: 1px solid rgba(0, 212, 255, 0.15);
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.add-review-title {
  font-family: var(--fuente-titulo); font-size: 1.2rem; font-weight: 700;
  color: var(--azul-neon); text-transform: uppercase; text-align: center; margin-bottom: 1.5rem;
}
.review-form-group { margin-bottom: 1rem; }
.review-form-group label {
  display: block; font-family: var(--fuente-titulo); font-size: 0.75rem;
  color: var(--gris-claro); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem;
}
.review-name-input, .review-text-input {
  width: 100%; padding: 0.8rem 1rem; border-radius: 10px;
  background: rgba(10, 10, 20, 0.6); border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--blanco); font-family: var(--fuente-texto); font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.review-name-input:focus, .review-text-input:focus {
  outline: none; border-color: var(--azul-neon); box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}
.review-name-input::placeholder, .review-text-input::placeholder { color: var(--gris-medio); opacity: 0.6; }
.star-input { display: flex; gap: 0.3rem; }
.star-input span {
  font-size: 1.5rem; color: var(--gris-medio); cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.star-input span.active { color: #ffc107; }
.star-input span:hover { transform: scale(1.2); }
.review-submit {
  width: 100%; padding: 0.9rem; border: none; border-radius: 10px;
  background: var(--gradiente-neon); color: var(--negro);
  font-family: var(--fuente-titulo); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s ease;
  letter-spacing: 1px;
}
.review-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4); }
.review-success {
  display: none; text-align: center; padding: 1rem;
  color: var(--whatsapp); font-family: var(--fuente-titulo); font-weight: 700;
  font-size: 0.9rem; text-transform: uppercase;
}
.reviews-loading {
  text-align: center; padding: 2rem;
  color: var(--azul-neon); font-family: var(--fuente-titulo); font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

/* CONTACT */
.contact-section-content { text-align: center; }
.contact-cards-row {
  display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(26, 26, 46, 0.8); border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px; padding: 1.5rem 2rem; transition: all 0.3s ease;
}
.contact-card:hover { border-color: var(--azul-neon); transform: translateY(-3px); }
.contact-icon { font-size: 2rem; color: var(--azul-neon); }
.contact-details h3 {
  font-family: var(--fuente-titulo); font-size: 0.9rem; font-weight: 700;
  color: var(--blanco); text-transform: uppercase; margin-bottom: 0.2rem;
}
.contact-details a {
  color: var(--azul-neon); text-decoration: none; font-size: 0.95rem; font-weight: 600;
  transition: color 0.3s ease;
}
.contact-details a:hover { color: var(--blanco); text-decoration: underline; }
.contact-details p { font-size: 0.8rem; color: var(--gris-claro); opacity: 0.7; }

.whatsapp-cta {
  padding: 2.5rem; border-radius: 15px; text-align: center;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.whatsapp-cta-title {
  font-family: var(--fuente-titulo); font-size: 1.5rem; font-weight: 700;
  color: var(--whatsapp); text-transform: uppercase; margin-bottom: 0.5rem;
}
.whatsapp-cta-desc { color: var(--gris-claro); margin-bottom: 1.5rem; opacity: 0.8; }

/* FOOTER */
.footer {
  background: rgba(10, 10, 20, 0.9); border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 3rem 20px 1rem;
}
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  color: var(--gris-claro); text-decoration: none; font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--azul-neon); }
.footer-links-title, .footer-social-title {
  font-family: var(--fuente-titulo); font-size: 0.9rem; font-weight: 700;
  color: var(--blanco); text-transform: uppercase; margin-bottom: 1rem; letter-spacing: 1px;
}
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0, 212, 255, 0.1); border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--azul-neon); text-decoration: none; font-size: 1rem;
  transition: all 0.3s ease;
}
.social-link:hover { background: var(--azul-neon); color: var(--negro); transform: translateY(-3px); }
.social-link.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-link.instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }
.social-link.tiktok:hover { background: #000; border-color: #000; color: #fff; }

.footer-bottom {
  text-align: center; padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}
.copyright-text { font-size: 0.8rem; color: var(--gris-claro); opacity: 0.5; }

/* FLOATING BUTTONS */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px;
  width: 65px; height: 65px; border-radius: 50%;
  background: var(--whatsapp); color: var(--blanco);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; text-decoration: none; z-index: 999;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease; animation: float-pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7); }
.whatsapp-tooltip {
  position: absolute; right: 75px; top: 50%; transform: translateY(-50%);
  background: rgba(26, 26, 46, 0.95); color: var(--blanco); padding: 0.5rem 1rem;
  border-radius: 8px; font-family: var(--fuente-titulo); font-size: 0.7rem;
  font-weight: 600; white-space: nowrap; border: 1px solid rgba(0, 212, 255, 0.2);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.call-float {
  position: fixed; bottom: 100px; right: 25px;
  width: 55px; height: 55px; border-radius: 50%;
  background: var(--azul-neon); color: var(--negro);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none; z-index: 999;
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
}
.call-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6); }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-features-bar { gap: 1rem; padding: 0.8rem 1.5rem; }
  .hero-feat { font-size: 0.65rem; }
  .hero-feat-divider { display: none; }
  .hero-stats { gap: 0.8rem; flex-wrap: nowrap; }
  .hero-stat { min-width: 90px; padding: 0.7rem 0.8rem; }
  .hero-stat-value { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.65rem; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 600px) {
  .hero { padding: 80px 15px 40px; }
  .hero-badge { font-size: 0.55rem; letter-spacing: 2px; padding: 0.4rem 1rem; }
  .hero-description { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-features-bar { flex-wrap: wrap; gap: 0.5rem 1rem; padding: 0.6rem 1rem; border-radius: 10px; }
  .hero-feat-divider { display: none; }
  .hero-feat { font-size: 0.6rem; }
  .hero-stats { flex-direction: row; flex-wrap: nowrap; justify-content: center; gap: 0.5rem; }
  .hero-stat { flex: 1; min-width: 0; padding: 0.6rem 0.4rem; }
  .hero-stat-value { font-size: 1.4rem; }
  .hero-stat-suffix { font-size: 1rem; }
  .hero-stat-label { font-size: 0.55rem; letter-spacing: 0; }
  .hero-scroll-indicator { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .service-card { padding: 1rem; }
  .service-icon { width: 45px; height: 45px; font-size: 1.2rem; }
  .service-title { font-size: 0.8rem; }
  .service-description { font-size: 0.75rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .testimonial-card { padding: 1rem; }
  .testimonial-quote { font-size: 1.8rem; }
  .testimonial-text { font-size: 0.8rem; }
  .testimonial-avatar { width: 35px; height: 35px; font-size: 0.8rem; }
  .testimonial-info h4 { font-size: 0.75rem; }
  .promo-bar { padding: 0.8rem 15px; }
  .promo-bar-inner { flex-direction: row; gap: 0.8rem; flex-wrap: nowrap; }
  .promo-icon-glow { font-size: 1.3rem; }
  .promo-title { font-size: 0.6rem; }
  .promo-deal { font-size: 0.7rem; }
  .promo-btn { padding: 0.4rem 1rem; font-size: 0.6rem; }
  .contact-cards-row { flex-direction: column; align-items: center; gap: 1rem; }
  .contact-card { width: 100%; max-width: 350px; justify-content: center; }
  .add-review-box { padding: 1.5rem; }
  .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .call-float { width: 45px; height: 45px; bottom: 85px; right: 20px; font-size: 1.2rem; }
}
