/* ==========================================================================
   RIBBONTECH SOPORTE IT & RMA - ZONA NORTE GBA
   Design System & Styling
   Typography: Plus Jakarta Sans & Manrope
   Theme: Cyber-Tech Dark (Emerald & Cyan Accents)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #070b14;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --border-card: rgba(16, 185, 129, 0.18);
  --border-card-hover: rgba(6, 182, 212, 0.4);
  
  --primary-emerald: #10b981;
  --primary-emerald-hover: #059669;
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.35);
  --accent-indigo: #6366f1;
  --accent-amber: #f59e0b;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Shadows & Effects */
  --glow-emerald: 0 0 25px rgba(16, 185, 129, 0.25);
  --glow-cyan: 0 0 25px rgba(6, 182, 212, 0.3);
  --glass-backdrop: blur(14px);
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Background Glowing Orbs */
.cyber-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.08) 0%, transparent 45%);
}

/* Header & Navigation */
header.soporte-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition-fast);
  background: rgba(7, 11, 20, 0.65);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

header.soporte-header.scrolled {
  padding: 0.8rem 0;
  background: rgba(7, 11, 20, 0.92);
  border-bottom-color: var(--border-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

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

.brand-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand-soporte:hover .brand-logo-circle {
  transform: scale(1.08);
}

.brand-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tag-rma {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-emerald);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

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

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-emerald);
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--primary-emerald), #059669);
  color: #ffffff;
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--glow-emerald);
  transition: all var(--transition-fast);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.45);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==========================================================================
   PARALLAX SECTIONS & OVERLAYS
   ========================================================================== */

.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

@media (max-width: 992px) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* Background Canvas Animation */
.cyber-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.hero-soporte.parallax-section {
  background-image: url('../images/hero-bg.jpg');
}

.hero-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(7, 11, 20, 0.75) 0%, rgba(15, 23, 42, 0.62) 60%, rgba(7, 11, 20, 0.82) 100%);
}

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

/* Parallax Breakout Banners */
.parallax-breakout {
  padding: 110px 0;
  margin: 60px 0;
  border-top: 1px solid var(--border-card-hover);
  border-bottom: 1px solid var(--border-card-hover);
}

.parallax-breakout-1 {
  background-image: url('../images/parallax-technician.jpg');
}

.parallax-breakout-2 {
  background-image: url('../images/parallax-hardware.jpg');
}

.parallax-breakout-3 {
  background-image: url('../images/parallax-rma.jpg');
}

.parallax-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.75) 0%, rgba(15, 23, 42, 0.58) 50%, rgba(7, 11, 20, 0.82) 100%);
}

.parallax-overlay-cyan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(7, 11, 20, 0.78) 100%);
}

.parallax-overlay-emerald {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(7, 11, 20, 0.80) 100%);
}

.parallax-content-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.parallax-content-box h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.parallax-content-box p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

/* Hero Section */
.hero-soporte {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent-cyan);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-badge-location i {
  color: var(--primary-emerald);
}

.hero-soporte h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.highlight-emerald {
  background: linear-gradient(135deg, var(--primary-emerald), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-soporte p.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-features-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.pill-item {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-card);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pill-item i {
  color: var(--primary-emerald);
}

.hero-ctas-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-whatsapp-large {
  background: #25D366;
  color: #ffffff;
  padding: 0.95rem 1.8rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
}

.btn-whatsapp-large:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.btn-email-large {
  background: rgba(30, 41, 59, 0.9);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 0.95rem 1.8rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-email-large:hover {
  border-color: var(--accent-cyan);
  background: rgba(15, 23, 42, 0.95);
  color: var(--accent-cyan);
  transform: translateY(-3px);
}

/* Card Hero Visual / Instant Quote Widget */
.hero-card-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-card-hover);
  border-radius: 28px;
  padding: 2.2rem;
  backdrop-filter: var(--glass-backdrop);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-card-widget::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-emerald), transparent);
}

.widget-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.widget-title i {
  color: var(--accent-cyan);
}

.widget-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.quote-options {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;

}

.option-item {
  background: rgba(7, 11, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.option-item:hover {
  border-color: var(--primary-emerald);
  background: rgba(16, 185, 129, 0.06);
}

.option-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.option-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.option-info h4 {
  font-size: 0.98rem;
  color: #ffffff;
}

.option-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.option-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-emerald);
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
}

/* CRO Problem-Solution Cards & Badges */
.pill-problem {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.pill-solution {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-emerald);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.problem-box-card {
  background: rgba(7, 11, 20, 0.65);
  border-left: 3px solid #f87171;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.problem-box-card p {
  font-size: 0.88rem;
  color: #fca5a5;
  margin-bottom: 0;
  line-height: 1.45;
}

.solution-box-card {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid var(--primary-emerald);
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.solution-box-card p {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Smart & Elegant Card CTA */
.card-action-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.1rem;
  background: rgba(37, 211, 102, 0.08);
  color: #25D366;
  border: 1.5px solid rgba(37, 211, 102, 0.25);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.card-action-link i.bi-whatsapp {
  font-size: 1.05rem;
}

.card-action-link:hover {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

/* Global Section CTA Banner */
.services-global-cta-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 20px;
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

.services-global-cta-banner h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.services-global-cta-banner h4 i {
  color: var(--accent-cyan);
}

.services-global-cta-banner p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Sections Styling */
.section-soporte {
  padding: 100px 0;
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-tag {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.section-title-large {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle-text {
  font-size: 1.08rem;
  color: var(--text-muted);
}

/* Services Grid */
.services-soporte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card-service-soporte {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 2.2rem;
  backdrop-filter: var(--glass-backdrop);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card-service-soporte:hover {
  transform: translateY(-8px);
  border-color: var(--border-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glow-cyan);
  background: var(--bg-card-hover);
}

.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.card-service-soporte h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.card-service-soporte p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-bullet-list {
  list-style: none;
  margin-bottom: 1.8rem;
}

.service-bullet-list li {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullet-list li i {
  color: var(--accent-cyan);
  font-size: 0.9rem;
}

.btn-card-action {
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.card-service-soporte:hover .btn-card-action {
  background: var(--primary-emerald);
  border-color: var(--primary-emerald);
  color: #ffffff;
}

/* SSD Speed Calculator Interactive Component */
.ssd-interactive-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(7, 11, 20, 0.95) 100%);
  border: 1px solid var(--border-card-hover);
  border-radius: 32px;
  padding: 3.5rem 2.5rem;
  margin-top: 4rem;
}

.ssd-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ssd-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ssd-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.speed-comparison-box {
  background: rgba(7, 11, 20, 0.8);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-group {
  margin-bottom: 1.5rem;
}

.bar-group:last-child {
  margin-bottom: 0;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bar-track {
  height: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill-hdd {
  height: 100%;
  width: 15%;
  background: #ef4444;
  border-radius: 10px;
}

.bar-fill-ssd {
  height: 100%;
  width: 95%;
  background: linear-gradient(90deg, var(--primary-emerald), var(--accent-cyan));
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

/* Zone Coverage Section */
.zone-coverage-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.zones-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.zone-tag {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--accent-cyan);
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
}

/* Testimonials / Trust Badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem 1.2rem;
  border-radius: 20px;
  text-align: center;
}

.trust-icon {
  font-size: 2.2rem;
  color: var(--primary-emerald);
  margin-bottom: 0.8rem;
}

.trust-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
footer.soporte-footer {
  background: #03060d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  text-align: center;
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Floating WhatsApp Button */
.floating-wa-soporte {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-fast);
}

.floating-wa-soporte:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Email Modal Styling for Soporte */
.email-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.email-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.email-modal-card {
  background: #0f172a;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid var(--border-card-hover);
}

.email-modal-overlay.active .email-modal-card {
  transform: translateY(0) scale(1);
}

.email-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #94a3b8;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.email-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.email-modal-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.email-modal-icon-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-emerald), var(--accent-cyan));
  color: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  box-shadow: var(--glow-emerald);
}

.email-modal-header h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.email-modal-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.email-providers-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.email-provider-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-decoration: none;
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.2s ease;

}

.email-provider-btn:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--primary-emerald);
  transform: translateY(-2px);
  color: #ffffff;
}

.email-provider-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.email-copy-box {
  background: rgba(7, 11, 20, 0.8);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.email-address-text {
  font-family: monospace;
  font-size: 0.92rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.btn-copy-address {
  background: var(--primary-emerald);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.2s ease;
}

.btn-copy-address:hover {
  background: var(--primary-emerald-hover);
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-soporte-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ssd-flex {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-soporte {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 11, 20, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border-card);
  }
  .nav-soporte.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .services-soporte-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero-soporte {
    padding: 140px 0 60px;
  }
}
