/* -------------------------------------- */
/* VentasIA 24/7 - Crypto/Web3 Aesthetic  */
/* -------------------------------------- */
:root {
  /* Colors - Behance Reference */
  --bg-dark: #07051a;
  --bg-darker: #040310;
  
  --primary: #2B6BFF;     /* Electric Blue */
  --primary-glow: rgba(43, 107, 255, 0.4);
  
  --secondary: #BB2BFF;   /* Neon Purple */
  --secondary-glow: rgba(187, 43, 255, 0.4);
  
  --text-main: #ffffff;
  --text-muted: #A1A1A1;
  
  --glass-bg: rgba(15, 15, 15, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------- */
/* Reset & Base Styles                    */
/* -------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

/* Blueprint Grid Background */
.grid-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
  animation: grid-move 20s linear infinite;
}

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

/* Animated Background Orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  animation: float 20s infinite ease-in-out alternate;
  opacity: 0.5;
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  top: -20%; right: -10%;
}

.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--secondary-glow), transparent 70%);
  bottom: -20%; left: -10%;
  animation-delay: -5s;
}

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

/* Mouse Tracking Glow */
#cursor-glow {
  position: fixed; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43, 107, 255, 0.08), transparent 60%);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* -------------------------------------- */
/* Typography & Utilities                 */
/* -------------------------------------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 800; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 70px 0; }
.text-center { text-align: center; }
.center-margin { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #A1A1A1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}
.text-gradient {
  background: linear-gradient(135deg, var(--secondary), var(--primary), #00F0FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(43, 107, 255, 0.3);
}

/* Glassmorphism Classes (Crypto Style) */
.glass {
  background: linear-gradient(145deg, rgba(30, 30, 35, 0.4) 0%, rgba(10, 10, 15, 0.8) 100%);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.4), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 32px;
}

/* Crypto Badges */
.crypto-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.center-badge { margin: 0 auto 24px; display: inline-flex; }
.badge-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); }

/* -------------------------------------- */
/* Buttons                                */
/* -------------------------------------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff; padding: 16px 36px; border-radius: 100px; /* Pill shape */
  font-weight: 700; font-family: var(--font-body); letter-spacing: 0.5px;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
  box-shadow: 0 4px 20px rgba(43, 107, 255, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(187, 43, 255, 0.5), inset 0 2px 0 rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #c74dff 0%, #4d84ff 100%);
}

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: rgba(255,255,255,0.03); color: #fff;
  padding: 16px 36px; border-radius: 100px;
  font-weight: 600; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

.btn-large { font-size: 1.1rem; }

/* -------------------------------------- */
/* Navigation                             */
/* -------------------------------------- */
.navbar { position: fixed; top: 0; width: 100%; padding: 24px 0; z-index: 1000; transition: var(--transition); }
.navbar.scrolled {
  padding: 16px 0; background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 60px; width: auto; }
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-link { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); transition: var(--transition); }
.nav-link:hover { color: #fff; }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* -------------------------------------- */
/* Hero Section (Split Layout)            */
/* -------------------------------------- */
.hero-section { min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; padding-top: 100px; gap: 40px; }
.hero-container { display: grid; grid-template-columns: 55% 45%; gap: 40px; align-items: center; }

.hero-text-wrapper { display: flex; gap: 30px; }
.neon-line { width: 6px; background: #fff; border-radius: 10px; box-shadow: 0 0 15px var(--primary), 0 0 30px #fff; transform: scaleY(0.9); }

.oversized-text { font-size: clamp(3.5rem, 6vw, 5.5rem); letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 550px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 10px; }

/* Trust Logos */
.trust-logos { border-top: 1px solid var(--glass-border); padding-top: 24px; width: 100%; overflow: hidden; }
.trust-label { display: block; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 16px; font-weight: 600; }
.logos-strip { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: nowrap; padding-bottom: 8px; overflow-x: auto;}
.trust-icon { color: rgba(255,255,255,0.4); font-size: 1rem; display: flex; align-items: center; gap: 8px; font-weight: 600; font-family: var(--font-heading); transition: var(--transition); white-space: nowrap; text-decoration: none;}
.trust-icon:hover { color: var(--text-main); }
.trust-icon i { font-size: 1.3rem; }

/* Right Visuals (Floating Cubes) */
.hero-visual { position: relative; height: 500px; display: flex; justify-content: center; align-items: center; perspective: 1200px; transform-style: preserve-3d;}

.cube {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(43, 107, 255, 0.05));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 
    inset 0 0 40px rgba(187, 43, 255, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(43, 107, 255, 0.5);
  border-radius: 20px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.9), 0 0 30px rgba(43, 107, 255, 0.9);
}

.cube::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 16px; border: 2px solid var(--primary);
  filter: blur(6px); z-index: -1;
  transform: translateZ(-30px);
}

.cube-1 { top: 50%; left: 50%; margin-top: -70px; margin-left: -70px; width: 140px; height: 140px; animation: spin-1 12s infinite cubic-bezier(0.4, 0, 0.2, 1); font-size: 1.5rem; }
.cube-2 { top: 50%; left: 50%; margin-top: -40px; margin-left: -40px; width: 80px; height: 80px; animation: spin-2 12s infinite cubic-bezier(0.4, 0, 0.2, 1); box-shadow: inset 0 0 20px rgba(43, 107, 255, 0.8), 0 0 40px rgba(187, 43, 255, 0.6); font-size: 1rem; }
.cube-3 { top: 50%; left: 50%; margin-top: -50px; margin-left: -50px; width: 100px; height: 100px; animation: spin-3 12s infinite cubic-bezier(0.4, 0, 0.2, 1); box-shadow: inset 0 0 20px rgba(255, 0, 150, 0.8), 0 0 40px rgba(43, 107, 255, 0.6); font-size: 1.2rem; }

@keyframes spin-1 {
  0% { transform: translate(80px, -140px) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  25% { transform: translate(120px, -60px) rotateX(180deg) rotateY(180deg) rotateZ(90deg); }
  40% { transform: translate(-110px, 0) rotateX(360deg) rotateY(360deg) rotateZ(0deg); }
  60% { transform: translate(-110px, 0) rotateX(360deg) rotateY(360deg) rotateZ(0deg); }
  75% { transform: translate(-60px, 120px) rotateX(540deg) rotateY(540deg) rotateZ(90deg); }
  100% { transform: translate(80px, -140px) rotateX(720deg) rotateY(720deg) rotateZ(0deg); }
}

@keyframes spin-2 {
  0% { transform: translate(-140px, -40px) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  25% { transform: translate(-100px, -100px) rotateX(-180deg) rotateY(-180deg) rotateZ(-90deg); }
  40% { transform: translate(10px, 0) rotateX(-360deg) rotateY(-360deg) rotateZ(0deg); }
  60% { transform: translate(10px, 0) rotateX(-360deg) rotateY(-360deg) rotateZ(0deg); }
  75% { transform: translate(80px, -80px) rotateX(-540deg) rotateY(-540deg) rotateZ(-90deg); }
  100% { transform: translate(-140px, -40px) rotateX(-720deg) rotateY(-720deg) rotateZ(0deg); }
}

@keyframes spin-3 {
  0% { transform: translate(80px, 120px) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  25% { transform: translate(0px, 160px) rotateX(180deg) rotateY(0deg) rotateZ(180deg); }
  40% { transform: translate(110px, 0) rotateX(360deg) rotateY(0deg) rotateZ(360deg); }
  60% { transform: translate(110px, 0) rotateX(360deg) rotateY(0deg) rotateZ(360deg); }
  75% { transform: translate(-80px, 100px) rotateX(540deg) rotateY(0deg) rotateZ(540deg); }
  100% { transform: translate(80px, 120px) rotateX(720deg) rotateY(0deg) rotateZ(720deg); }
}

/* -------------------------------------- */
/* Marquee                                */
/* -------------------------------------- */
.marquee-container { width: 100%; overflow: hidden; background: var(--bg-darker); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 24px 0; display: flex; margin-top: 20px; margin-bottom: 10px; }
.marquee-content { display: flex; white-space: nowrap; animation: marquee 25s linear infinite; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; letter-spacing: 3px; color: rgba(255,255,255,0.3); }
.marquee-content span { margin: 0 40px; display: flex; align-items: center; }
.marquee-content i { font-size: 0.8rem; color: var(--primary); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* -------------------------------------- */
/* Bento Grid                             */
/* -------------------------------------- */
.bento-section { padding-top: 20px; padding-bottom: 0; }
.section-header { margin-bottom: 60px; max-width: 600px; }
.section-header h2 { font-size: 3rem; margin-bottom: 16px; letter-spacing: -1px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }

.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 320px; gap: 24px; }
.bento-card { padding: 40px; display: flex; flex-direction: column; transition: var(--transition); position: relative; overflow: hidden; }
.bento-card:hover { 
  border-color: rgba(43, 107, 255, 0.6); 
  transform: translateY(-8px) scale(1.01); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 30px rgba(43, 107, 255, 0.2); 
}

/* Background hover effect managed by JS */
.bento-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(187, 43, 255, 0.8), transparent 50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card > * { z-index: 1; position: relative; }

.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.card-tag { font-size: 0.75rem; background: rgba(255,255,255,0.05); padding: 4px 12px; border-radius: 50px; color: var(--text-muted); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.bento-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 24px; }

.bento-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.bento-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* Image Card Styles */
.bento-image-card { padding: 0; justify-content: flex-end; border: none; }
.bento-image-card::before { 
  display: block !important; 
  z-index: 1; 
  mix-blend-mode: color-dodge; /* Un efecto de resplandor que combina bien con imágenes oscuras */
}
.card-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; background-color: var(--primary); }
.card-bg-image img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; filter: grayscale(50%); opacity: 0.8; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.bento-image-card:hover .card-bg-image img { transform: scale(1.08); opacity: 1; }
.image-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(7, 5, 26, 0.95) 10%, transparent 60%); z-index: 1; pointer-events: none; }
.card-content-overlay { padding: 40px; position: relative; z-index: 2; margin-top: auto; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }

/* Bottom Image Visual for WhatsApp Card */
.bottom-image-visual { 
  margin-top: auto; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 100%; 
  padding-top: 25px; /* Un renglón de separación */
}
.bottom-image-visual img { 
  width: 100%; 
  max-height: 350px; 
  object-fit: contain; 
  transform: scale(1.10); 
  transform-origin: top center; /* Anclado arriba para que crezca hacia abajo */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}
.bento-card:hover .bottom-image-visual img { 
  transform: scale(1.16); 
}

/* Grid Spanning */
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 3; flex-direction: row; align-items: center; justify-content: space-between; position: relative; overflow: hidden; }
.bento-wide .bento-content { max-width: 50%; z-index: 2; position: relative; }
.bento-wide-image { 
  position: absolute; 
  right: 0; 
  top: 0; 
  width: 55%; 
  height: 100%; 
  z-index: 1; 
  pointer-events: none; 
}
.bento-wide-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%); 
  mask-image: linear-gradient(to right, transparent 0%, black 35%); 
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}
.bento-card:hover .bento-wide-image img { 
  transform: scale(1.08); 
}

/* Mockup Graph inside Large Bento */
.crypto-graph-mockup { margin-top: auto; height: 120px; display: flex; align-items: flex-end; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 16px;}
.bar { flex: 1; background: linear-gradient(to top, var(--primary), var(--secondary)); border-radius: 8px 8px 0 0; opacity: 0.8;}
.bar-1 { height: 30%; } .bar-2 { height: 50%; } .bar-3 { height: 75%; } .bar-4 { height: 100%; }

/* -------------------------------------- */
/* Social Proof                           */
/* -------------------------------------- */
.social-proof { padding-top: 30px; }
.section-title { font-size: 3rem; margin-bottom: 60px; letter-spacing: -1px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.testimonial-glass { padding: 40px; position: relative; display: flex; flex-direction: column; text-align: left; transition: var(--transition); }
.testimonial-glass:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: rgba(43, 107, 255, 0.4); }

.quote-icon { font-size: 2.5rem; color: var(--primary); opacity: 0.3; margin-bottom: 24px; }
.testimonial-glass p { font-size: 1.1rem; font-family: var(--font-heading); line-height: 1.5; margin-bottom: 30px; color: #fff; flex-grow: 1; }
.cite-info { display: flex; align-items: center; justify-content: flex-start; gap: 16px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;}
.avatar { width: 45px; height: 45px; border-radius: 50%; background: linear-gradient(135deg, var(--secondary), var(--primary)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-heading); font-size: 0.9rem; flex-shrink: 0; }
.author-details { text-align: left; display: flex; flex-direction: column; }
.author-details strong { font-size: 1rem; }
.author-details span { font-size: 0.8rem; font-weight: 600; }

/* -------------------------------------- */
/* CTA / Form                             */
/* -------------------------------------- */
.cta-glass { padding: 60px; position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-info h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;}
.cta-info p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-pill { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); padding: 16px 24px; border-radius: 100px; font-weight: 600; transition: var(--transition); border: 1px solid var(--glass-border); width: fit-content; }
.contact-pill:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.contact-pill i { color: var(--primary); font-size: 1.2rem; }

/* Form Container - Highlighted */
.form-container {
  position: relative;
  border-radius: 36px;
  padding: 3px; /* space for the gradient border */
  background: linear-gradient(135deg, var(--secondary), var(--primary), var(--secondary));
  background-size: 300% 300%;
  animation: border-rotate 4s linear infinite;
  box-shadow:
    0 0 40px rgba(187, 43, 255, 0.35),
    0 0 80px rgba(43, 107, 255, 0.2);
}

@keyframes border-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Form */
.cyber-form {
  background: rgba(5, 3, 22, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 44px;
  border-radius: 34px;
  border: none;
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow layer */
.cyber-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: radial-gradient(ellipse at 60% -10%, rgba(187,43,255,0.12), transparent 65%),
              radial-gradient(ellipse at -20% 80%, rgba(43,107,255,0.10), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.cyber-form > * { position: relative; z-index: 1; }

/* Form title badge */
.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,107,255,0.12);
  border: 1px solid rgba(43,107,255,0.35);
  color: #7EB3FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.form-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

.input-group { position: relative; margin-bottom: 32px; }
.input-group input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}
.input-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--transition);
  background: transparent;
}
.input-group input:focus {
  border-color: var(--primary);
  background: rgba(43,107,255,0.06);
  box-shadow: 0 0 0 3px rgba(43,107,255,0.18), 0 0 20px rgba(43,107,255,0.12);
}
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 0.78rem;
  color: var(--primary);
  background: rgba(5,3,22,0.95);
  padding: 0 6px;
  border-radius: 4px;
}

.w-100 { width: 100%; }

/* Pulsing glow on submit button */
.glow-btn {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(187,43,255,0.45),
    0 0 40px rgba(43,107,255,0.3);
  animation: btn-pulse 2.5s ease-in-out infinite;
}
.glow-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.glow-btn:hover::after { opacity: 1; }
.glow-btn:hover {
  animation: none;
  box-shadow:
    0 0 30px rgba(187,43,255,0.65),
    0 0 60px rgba(43,107,255,0.45);
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(187,43,255,0.4), 0 0 35px rgba(43,107,255,0.25); }
  50%       { box-shadow: 0 0 30px rgba(187,43,255,0.65), 0 0 55px rgba(43,107,255,0.45); }
}

.btn-cta-equal {
  max-width: 320px;
  height: 60px;
  font-size: 1.1rem !important;
  margin: 0 auto;
  display: flex !important;
}

/* -------------------------------------- */
/* Footer                                 */
/* -------------------------------------- */
.site-footer { padding: 50px 0 80px 0; border: none; margin-top: 0; position: relative; z-index: 10; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 40px; opacity: 1; }
.footer-logo { height: 260px; width: auto; mix-blend-mode: lighten; }
.footer-brand .logo-text { font-size: 4.5rem; }
.copyright { color: var(--text-muted); font-size: 1.4rem; }

/* Footer Social Icons */
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-link:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43,107,255,0.4);
}

/* -------------------------------------- */
/* WhatsApp Float                         */
/* -------------------------------------- */
.whatsapp-float { position: fixed; bottom: 40px; right: 40px; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #25d366; z-index: 1000; transition: var(--transition); border: 1px solid rgba(37,211,102,0.3); background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); }
.whatsapp-float:hover { background: #25d366; color: #fff; transform: scale(1.1); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }

/* -------------------------------------- */
/* Scroll Reveal                          */
/* -------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* -------------------------------------- */
/* Responsive Design                      */
/* -------------------------------------- */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-text-wrapper { gap: 0; }
  .neon-line { display: none; }
  .hero-actions { justify-content: center; }
  .logos-strip { justify-content: center; padding: 0; flex-wrap: wrap; gap: 20px; overflow-x: visible; }
  
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 2; grid-row: auto; }
  .bento-wide { grid-column: span 2; flex-direction: column; text-align: center; }
  .bento-wide .bento-content { max-width: 100%; margin-bottom: 24px; }
  .bento-wide .large-icon { position: static; transform: none; font-size: 5rem; margin: 0 auto; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  
  .cta-grid { grid-template-columns: 1fr; }
  .cta-info { text-align: center; }
  .contact-pill { margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .bento-section { padding-bottom: 0; }
  .social-proof { padding-top: 40px; padding-bottom: 0; }
  .cta-section { padding-top: 50px; }
  
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); flex-direction: column; padding: 24px; border-bottom: 1px solid var(--glass-border); }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  
  .oversized-text { font-size: 2.6rem; line-height: 1.1; }
  .hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
  .hero-actions { flex-direction: column; width: 100%; align-items: center; gap: 16px; }
  .btn-large { width: 100%; max-width: 320px; }
  
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 20px; }
  .bento-large, .bento-wide { grid-column: span 1; grid-row: auto; }
  
  .bento-card { padding: 24px; text-align: center; min-height: 320px; }
  .bento-image-card { padding: 0; }
  .bento-card h3 { font-size: 1.5rem; }
  .bento-card p { font-size: 1.05rem; }
  .card-header { flex-direction: column; align-items: center; gap: 12px; }
  
  .bento-wide-image { position: relative; width: 100%; height: 250px; margin-top: 20px; }
  .bento-wide-image img { mask-image: none; -webkit-mask-image: none; border-radius: 16px; }
  
  .section-header { margin-bottom: 30px; }
  .section-header h2, .section-title { font-size: 2.2rem; margin-bottom: 8px; }
  .section-header p { font-size: 1.1rem; }
  .cta-info h2 { font-size: 2.5rem; }
  
  .testimonial-glass, .cta-glass { padding: 24px; text-align: center; }
  .cite-info { flex-direction: column; text-align: center; justify-content: center; }
  .author-details { text-align: center; }
  
  .cyber-form { padding: 24px 16px; }
  .glass { border-radius: 20px; }
  
  .hero-visual { height: 350px; transform: scale(0.85); }
  .crypto-badge { font-size: 0.85rem; padding: 8px 16px; margin-bottom: 16px; }
  
  .site-footer { padding: 60px 0 120px 0; margin-top: 40px; }
  .footer-brand { flex-direction: column; gap: 16px; margin-bottom: 24px; }
  .footer-logo { height: 140px; }
  .footer-brand .logo-text { font-size: 2.8rem; }
  .copyright { font-size: 1.1rem; }
  
  .chat-window-toggle {
    bottom: 30px !important;
    right: 20px !important;
  }
}

/* -------------------------------------- */
/* Services Tabs Layout                   */
/* -------------------------------------- */
.services-section {
  padding: 50px 0 20px 0;
  position: relative;
}
.services-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(43, 107, 255, 0.4);
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(43, 107, 255, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(43, 107, 255, 0.1);
}
.service-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-card h4 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .services-section { padding: 50px 0 10px 0; }
  .services-tabs-container { gap: 20px; }
  .services-tabs { gap: 8px; margin-bottom: 0; }
  .tab-btn { padding: 10px 16px; font-size: 0.85rem; flex-grow: 1; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 20px; }
}

/* -------------------------------------- */
/* intl-tel-input Dark Theme Overrides    */
/* -------------------------------------- */
.iti { width: 100%; }
.iti__country-list { 
  background: rgba(5, 3, 22, 0.98); 
  border: 1px solid var(--glass-border); 
  color: #fff; 
  border-radius: 12px;
  font-family: var(--font-body);
}
.iti__country-list::-webkit-scrollbar { width: 8px; }
.iti__country-list::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.iti__divider { border-bottom: 1px solid rgba(255,255,255,0.1); }
.iti__country.iti__highlight { background: rgba(43, 107, 255, 0.2); }
.iti__selected-flag { border-radius: 12px 0 0 12px; background: transparent !important; }
.iti__country-name, .iti__dial-code { color: #fff; }
.iti__selected-dial-code { color: #fff; margin-left: 6px; }

/* Fix floating label for intl-tel-input wrapper */
.input-group:has(.iti) label {
  z-index: 10;
  left: 85px; /* Desplazar label para que no pise la bandera y prefijo */
}
.input-group:has(.iti input:focus) label,
.input-group:has(.iti input:not(:placeholder-shown)) label {
  top: -10px;
  left: 12px;
  font-size: 0.78rem;
  color: var(--primary);
  background: rgba(5,3,22,0.95);
  padding: 0 6px;
  border-radius: 4px;
}
