/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Radio Jesucristo Fuente de Vida)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #05070e;
  --bg-secondary: #0b0e1b;
  --bg-glass: rgba(11, 14, 27, 0.7);
  --bg-glass-hover: rgba(18, 23, 44, 0.85);
  
  --accent-cyan: #00f2fe;
  --accent-blue: #4facfe;
  --accent-gold: #ffd700;
  
  --text-primary: #ffffff;
  --text-secondary: #a3b3c9;
  --text-muted: #64748b;
  
  --border-glass: rgba(255, 255, 255, 0.07);
  --border-active: rgba(0, 242, 254, 0.35);
  
  --glow-cyan: 0 0 25px rgba(0, 242, 254, 0.3);
  --glow-gold: 0 0 25px rgba(255, 215, 0, 0.25);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Transitions */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & ADAPTIVE BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent; /* Smooth mobile touches */
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Adaptive base font scale depending on screen width */
  font-size: clamp(14px, 0.9vw + 10px, 18px);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(79, 172, 254, 0.2);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* ==========================================================================
   UTILITY CLASSES & ANIMATIONS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px); /* Adaptive container padding */
}

.text-gradient-cyan-blue {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fff2ac 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--glow-cyan), var(--shadow-premium);
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 2.8rem); /* Adaptive typography */
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: clamp(40px, 8vw, 64px);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes pulse-live {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 16px #ff3b30; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

@keyframes wave-play {
  0%, 100% { height: 6px; }
  50% { height: 32px; }
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(5, 7, 14, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  gap: 12px;
  letter-spacing: -0.5px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 242, 254, 0.25);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.15);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(15px, 2.5vw, 35px); /* Adaptive gap between links */
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-highlight {
  border: 1px solid var(--accent-blue);
  padding: 8px 20px !important;
  border-radius: 30px;
  background: rgba(79, 172, 254, 0.08);
  transition: var(--transition-smooth) !important;
}

.nav-highlight:hover {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: var(--bg-primary) !important;
  box-shadow: var(--glow-cyan);
  border-color: transparent;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 5px;
}

/* ==========================================================================
   HERO / HEADER SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100dvh; /* Dynamic Viewport Height */
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 25%, rgba(79, 172, 254, 0.15), transparent 50%),
              radial-gradient(circle at 15% 75%, rgba(0, 242, 254, 0.08), transparent 45%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.2rem); /* Adaptive Heading */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-content h1 span {
  display: block;
}

.hero-quote {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-cyan);
  padding-left: clamp(16px, 3vw, 24px);
  font-style: italic;
}

.hero-badge-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  text-decoration: none;
  color: var(--text-primary);
  min-width: 170px;
  transition: var(--transition-smooth);
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 242, 254, 0.15);
}

.app-badge i {
  font-size: 2rem;
  color: var(--accent-cyan);
}

.app-badge-text {
  display: flex;
  flex-direction: column;
}

.app-badge-text span:first-child {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-badge-text span:last-child {
  font-size: 1rem;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-circle-glow {
  position: absolute;
  width: clamp(280px, 40vw, 450px);
  height: clamp(280px, 40vw, 450px);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-glass);
}

.hero-card-body {
  padding: clamp(20px, 4vw, 32px);
}

/* ==========================================================================
   CANAL EN VIVO (VIDEO STREAM) - PREMIUM CUSTOM STYLES
   ========================================================================== */
.live-stream-section {
  padding: 100px 0;
  position: relative;
  transition: padding 0.5s ease;
}

.video-player-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border-glass);
  background: #000;
  transition: var(--transition-smooth);
}

/* Video Ambient Glow */
.video-ambient-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, rgba(79, 172, 254, 0.1) 50%, transparent 80%);
  filter: blur(60px);
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

/* Video.js Skin Overhaul (Premium Netflix Dark Design) */
.video-js {
  width: 100% !important;
  aspect-ratio: 16/9;
  font-family: var(--font-body) !important;
  background-color: #000 !important;
}

.video-js .vjs-tech {
  object-fit: contain;
}

/* Big Center Play Button */
.vjs-big-play-centered .vjs-big-play-button {
  width: clamp(70px, 10vw, 90px) !important;
  height: clamp(70px, 10vw, 90px) !important;
  line-height: clamp(66px, 10vw, 86px) !important;
  border-radius: 50% !important;
  border: none !important;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue)) !important;
  color: var(--bg-primary) !important;
  margin-left: calc(-1 * clamp(35px, 5vw, 45px)) !important;
  margin-top: calc(-1 * clamp(35px, 5vw, 45px)) !important;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.4) !important;
  transition: var(--transition-smooth) !important;
}

.video-player-container:hover .vjs-big-play-button {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.7) !important;
}

/* Control Bar Floating Glassmorphic */
.video-js .vjs-control-bar {
  background: rgba(11, 14, 27, 0.5) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: var(--radius-sm);
  margin: 15px;
  width: calc(100% - 30px) !important;
  height: 52px !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  display: flex !important;
  align-items: center;
  padding: 0 10px;
}

.video-js .vjs-button {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  transition: var(--transition-fast);
  color: #fff !important;
}

.video-js .vjs-button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-cyan) !important;
}

/* Progress Slider */
.video-js .vjs-progress-control {
  height: 8px !important;
  margin-right: 10px;
}

.video-js .vjs-progress-holder {
  height: 6px !important;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

.video-js .vjs-play-progress {
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue)) !important;
}

.video-js .vjs-slider-bar::before {
  display: none !important;
}

.video-js .vjs-play-progress::before {
  font-size: 14px !important;
  top: -4px !important;
  color: #fff !important;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
}

/* Live Badge inside Player controls */
.video-js .vjs-live-control {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
}

/* CUSTOM VIDEO CONTROLS (Theater & PiP) */
.custom-player-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.custom-player-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.custom-player-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--text-primary);
}

.custom-player-btn.active {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

/* THEATER MODE BODY OVERLAY EFFECTS */
body.theater-active {
  background-color: #020306;
}

body.theater-active .live-stream-section {
  padding: 70px 0 40px;
}

body.theater-active .navbar, 
body.theater-active header,
body.theater-active .radio-section,
body.theater-active .team-section,
body.theater-active .contact-section,
body.theater-active footer,
body.theater-active .floating-widgets {
  opacity: 0.1;
  pointer-events: none;
  filter: blur(4px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

body.theater-active .video-player-container {
  max-width: 100%;
  aspect-ratio: 21/9;
  border-radius: 0;
  border-left: none;
  border-right: none;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.9);
}

body.theater-active .vjs-tech {
  object-fit: contain;
}

body.theater-active .video-ambient-glow {
  opacity: 0.6;
  filter: blur(120px);
}

/* ==========================================================================
   RADIO EN LINEA (AUDIO STREAM)
   ========================================================================== */
.radio-section {
  padding: 100px 0;
  background: radial-gradient(circle at 10% 30%, rgba(79, 172, 254, 0.05), transparent 45%);
}

.radio-player-card {
  max-width: 480px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 45px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.live-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff3b30;
}

.live-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b30;
  border-radius: 50%;
}

.radio-player-card.is-playing .live-badge-dot {
  animation: pulse-live 1.5s infinite;
}

.player-artwork {
  position: relative;
  width: clamp(140px, 30vw, 180px);
  height: clamp(140px, 30vw, 180px);
  margin: 20px auto 30px;
}

.artwork-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #151b33 100%);
  border: 4px solid var(--border-glass);
  padding: 10px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.artwork-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.artwork-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Disk spin animation when playing */
.radio-player-card.is-playing .artwork-circle {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  animation: rotate-disk 20s linear infinite;
}

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

.player-info {
  margin-bottom: 25px;
}

.player-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.player-subtitle {
  color: var(--accent-cyan);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.player-visualizer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  height: 38px;
  margin: 20px 0 10px;
}

.vis-bar {
  width: 4px;
  height: 5px;
  background: linear-gradient(to top, var(--accent-blue), var(--accent-cyan));
  border-radius: 2px;
  transition: height 0.3s ease;
}

.radio-player-card.is-playing .vis-bar {
  animation: wave-play 1.2s ease-in-out infinite;
}

.radio-player-card.is-playing .vis-bar:nth-child(1) { animation-delay: 0.1s; }
.radio-player-card.is-playing .vis-bar:nth-child(2) { animation-delay: 0.35s; }
.radio-player-card.is-playing .vis-bar:nth-child(3) { animation-delay: 0.6s; }
.radio-player-card.is-playing .vis-bar:nth-child(4) { animation-delay: 0.2s; }
.radio-player-card.is-playing .vis-bar:nth-child(5) { animation-delay: 0.45s; }
.radio-player-card.is-playing .vis-bar:nth-child(6) { animation-delay: 0.7s; }
.radio-player-card.is-playing .vis-bar:nth-child(7) { animation-delay: 0.5s; }

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.play-btn {
  width: clamp(70px, 12vw, 84px);
  height: clamp(70px, 12vw, 84px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border: none;
  color: var(--bg-primary);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--glow-cyan);
  transition: var(--transition-smooth);
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.65);
}

.play-btn i {
  margin-left: 4px;
}

.radio-player-card.is-playing .play-btn i {
  margin-left: 0;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 250px;
}

.volume-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.volume-btn:hover {
  color: var(--accent-cyan);
  background: rgba(255,255,255,0.05);
}

.volume-slider {
  flex: 1;
  height: 6px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
  transition: transform 0.1s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

/* ==========================================================================
   MEET THE TEAM SECTION
   ========================================================================== */
.team-section {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  /* Adaptive CSS grid adapting column counts cleanly on device viewports */
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 20vw, 240px), 1fr));
  gap: clamp(20px, 4vw, 35px);
}

.team-card {
  padding: clamp(24px, 4vw, 36px) 20px;
  text-align: center;
  position: relative;
}

.team-avatar-container {
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--border-glass), var(--border-glass));
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar-container {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  box-shadow: var(--glow-cyan);
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-secondary);
  filter: brightness(0.98) contrast(1.05) saturate(0.95);
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar {
  filter: brightness(1.08) contrast(1.05) saturate(1.1);
  transform: scale(1.04);
}

.team-name {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}

.team-role {
  font-size: 0.9rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 6vw, 60px);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-cyan);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.05);
}

.info-details h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.info-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form-container {
  padding: clamp(24px, 5vw, 48px);
}

.form-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.15);
}

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

.form-label {
  position: absolute;
  left: 20px;
  top: 17px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -10px;
  left: 15px;
  font-size: 0.75rem;
  padding: 0 8px;
  background: var(--bg-secondary);
  color: var(--accent-cyan);
  border-radius: 4px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--bg-primary);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--glow-cyan);
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
}

/* ==========================================================================
   FLOATING WIDGETS
   ========================================================================== */
.floating-widgets {
  position: fixed;
  right: clamp(16px, 3vw, 25px);
  bottom: clamp(16px, 3vw, 25px);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: clamp(48px, 6vw, 56px);
  height: clamp(48px, 6vw, 56px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.float-whatsapp {
  background: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.float-facebook {
  background: #1877f2;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-glass);
  text-align: center;
  background: #030408;
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

footer a:hover {
  color: var(--accent-blue);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-quote {
    border-left: none;
    border-top: 3px solid var(--accent-cyan);
    padding-left: 0;
    padding-top: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100dvh - 75px);
    background: rgba(5, 7, 14, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-glass);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .video-js .vjs-control-bar {
    margin: 10px;
    width: calc(100% - 20px) !important;
    height: 48px !important;
  }
}

/* ==========================================================================
   MODAL DIALOG (SALUDOS EN VIVO)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 460px;
  padding: clamp(24px, 5vw, 40px);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-cyan);
}
