/* ============================================
   Secure Hosting WHMCS Template
   Versión: 1.0.0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   VARIABLES Y CONFIGURACIÓN BASE
   ============================================ */
:root {
  /* Colores principales */
  --sh-bg-primary: #0a1628;
  --sh-bg-secondary: #0d1d33;
  --sh-bg-card: rgba(255, 255, 255, 0.05);
  
  /* Colores de acento */
  --sh-cyan: #00d4ff;
  --sh-cyan-light: #4de8ff;
  --sh-blue: #3b82f6;
  --sh-blue-dark: #1e40af;
  
  /* Texto */
  --sh-text-primary: #ffffff;
  --sh-text-secondary: #9ca3af;
  --sh-text-muted: #6b7280;
  
  /* Bordes */
  --sh-border: rgba(255, 255, 255, 0.1);
  --sh-border-hover: rgba(0, 212, 255, 0.5);
  
  /* Gradientes */
  --sh-gradient-primary: linear-gradient(135deg, #00d4ff 0%, #3b82f6 100%);
  --sh-gradient-hero: linear-gradient(180deg, #0a1628 0%, #0d1d33 100%);
  
  /* Sombras */
  --sh-shadow-cyan: 0 0 40px rgba(0, 212, 255, 0.3);
  --sh-shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
  
  /* Radios */
  --sh-radius-sm: 0.5rem;
  --sh-radius-md: 0.75rem;
  --sh-radius-lg: 1rem;
  --sh-radius-xl: 1.5rem;
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--sh-bg-primary);
  color: var(--sh-text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-gradient {
  background: var(--sh-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: var(--sh-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--sh-border);
}

.glow-cyan {
  box-shadow: var(--sh-shadow-cyan);
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
.sh-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.sh-navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sh-border);
}

.sh-navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sh-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.sh-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--sh-gradient-primary);
  border-radius: var(--sh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sh-logo-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.sh-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.sh-logo-text span {
  color: var(--sh-cyan);
}

/* Menú de navegación */
.sh-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.sh-nav-menu a {
  color: var(--sh-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.sh-nav-menu a:hover {
  color: var(--sh-cyan);
}

.sh-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sh-cyan);
  transition: width 0.3s ease;
}

.sh-nav-menu a:hover::after {
  width: 100%;
}

/* Botones de navegación */
.sh-nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sh-btn {
  padding: 0.625rem 1.25rem;
  border-radius: var(--sh-radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sh-btn-ghost {
  color: var(--sh-text-secondary);
  background: transparent;
}

.sh-btn-ghost:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.sh-btn-primary {
  background: var(--sh-gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.sh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.sh-btn-outline {
  border: 1px solid var(--sh-border);
  color: white;
  background: transparent;
}

.sh-btn-outline:hover {
  border-color: var(--sh-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.sh-btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Menú móvil */
.sh-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.sh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.sh-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sh-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.sh-hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  top: -100px;
  left: 20%;
}

.sh-hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  top: 30%;
  right: -100px;
}

.sh-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.sh-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.sh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 9999px;
  color: var(--sh-cyan);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.sh-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sh-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.sh-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.sh-hero-description {
  font-size: 1.125rem;
  color: var(--sh-text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

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

/* Stats */
.sh-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.sh-stat-card {
  padding: 1.5rem;
  border-radius: var(--sh-radius-xl);
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  transition: all 0.3s ease;
}

.sh-stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--sh-border-hover);
}

.sh-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sh-cyan);
  margin-bottom: 0.25rem;
}

.sh-stat-label {
  font-size: 0.875rem;
  color: var(--sh-text-muted);
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
.sh-section {
  padding: 6rem 1.5rem;
  position: relative;
}

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

.sh-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 9999px;
  color: var(--sh-cyan);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sh-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.sh-section-description {
  font-size: 1.125rem;
  color: var(--sh-text-secondary);
}

/* ============================================
   SERVICIOS / PRODUCTOS
   ============================================ */
.sh-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.sh-service-card {
  padding: 2rem;
  border-radius: var(--sh-radius-xl);
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sh-service-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sh-service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--sh-border-hover);
  transform: translateY(-4px);
}

.sh-service-card:hover::before {
  opacity: 1;
}

.sh-service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--sh-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.sh-service-card:hover .sh-service-icon {
  transform: scale(1.1);
}

.sh-service-icon.cyan {
  background: linear-gradient(135deg, #00d4ff 0%, #3b82f6 100%);
}

.sh-service-icon.purple {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.sh-service-icon.emerald {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.sh-service-icon.orange {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.sh-service-icon.indigo {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.sh-service-icon.rose {
  background: linear-gradient(135deg, #f43f5e 0%, #f97316 100%);
}

.sh-service-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.sh-service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.sh-service-card:hover .sh-service-title {
  color: var(--sh-cyan);
}

.sh-service-description {
  color: var(--sh-text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.sh-service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.sh-service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sh-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.sh-service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sh-cyan);
  border-radius: 50%;
}

.sh-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sh-cyan);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.sh-service-link:hover {
  gap: 0.75rem;
}

/* ============================================
   PRECIOS / PLANS
   ============================================ */
.sh-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sh-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.sh-pricing-toggle span {
  font-size: 0.875rem;
  font-weight: 500;
}

.sh-pricing-toggle span.active {
  color: white;
}

.sh-pricing-toggle span:not(.active) {
  color: var(--sh-text-muted);
}

.sh-pricing-badge {
  padding: 0.25rem 0.5rem;
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.sh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sh-pricing-card {
  padding: 2.5rem;
  border-radius: var(--sh-radius-xl);
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
  position: relative;
  transition: all 0.3s ease;
}

.sh-pricing-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sh-pricing-card.popular {
  border: 2px solid rgba(0, 212, 255, 0.5);
  box-shadow: var(--sh-shadow-cyan);
}

.sh-pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--sh-gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.sh-pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 0.5rem;
}

.sh-pricing-description {
  text-align: center;
  color: var(--sh-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.sh-pricing-price {
  text-align: center;
  margin-bottom: 2rem;
}

.sh-pricing-currency {
  font-size: 1.5rem;
  color: var(--sh-text-muted);
  vertical-align: top;
}

.sh-pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.sh-pricing-period {
  color: var(--sh-text-muted);
  font-size: 0.875rem;
}

.sh-pricing-savings {
  text-align: center;
  color: #4ade80;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.sh-pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.sh-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.875rem;
}

.sh-pricing-features li.included {
  color: var(--sh-text-secondary);
}

.sh-pricing-features li.not-included {
  color: var(--sh-text-muted);
}

.sh-pricing-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sh-pricing-check.included {
  background: var(--sh-gradient-primary);
}

.sh-pricing-check.not-included {
  background: rgba(107, 114, 128, 0.3);
}

.sh-pricing-check svg {
  width: 12px;
  height: 12px;
  color: white;
}

.sh-pricing-btn {
  width: 100%;
  padding: 0.875rem;
  border-radius: var(--sh-radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.sh-pricing-btn-primary {
  background: var(--sh-gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.sh-pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.sh-pricing-btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid var(--sh-border);
}

.sh-pricing-btn-outline:hover {
  border-color: var(--sh-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.sh-pricing-guarantee {
  text-align: center;
  margin-top: 2rem;
  color: var(--sh-text-muted);
  font-size: 0.875rem;
}

.sh-pricing-guarantee span {
  color: var(--sh-cyan);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.sh-footer {
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid var(--sh-border);
}

.sh-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.sh-footer-brand {
  max-width: 300px;
}

.sh-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.sh-footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--sh-gradient-primary);
  border-radius: var(--sh-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sh-footer-logo-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.sh-footer-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.sh-footer-logo-text span {
  color: var(--sh-cyan);
}

.sh-footer-description {
  color: var(--sh-text-secondary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.sh-footer-social {
  display: flex;
  gap: 0.75rem;
}

.sh-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--sh-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.sh-footer-social a:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  color: var(--sh-cyan);
}

.sh-footer-column h4 {
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.sh-footer-column ul {
  list-style: none;
}

.sh-footer-column li {
  margin-bottom: 0.75rem;
}

.sh-footer-column a {
  color: var(--sh-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.sh-footer-column a:hover {
  color: var(--sh-cyan);
}

/* Newsletter */
.sh-footer-newsletter {
  max-width: 1280px;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  border-radius: var(--sh-radius-xl);
  background: var(--sh-bg-card);
  border: 1px solid var(--sh-border);
}

.sh-footer-newsletter-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sh-footer-newsletter h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.sh-footer-newsletter p {
  color: var(--sh-text-secondary);
  font-size: 0.875rem;
}

.sh-footer-newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sh-footer-newsletter-form input {
  padding: 0.75rem 1rem;
  border-radius: var(--sh-radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sh-border);
  color: white;
  font-size: 0.875rem;
  min-width: 250px;
}

.sh-footer-newsletter-form input::placeholder {
  color: var(--sh-text-muted);
}

.sh-footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--sh-cyan);
}

.sh-footer-newsletter-form button {
  padding: 0.75rem 1.5rem;
  border-radius: var(--sh-radius-md);
  background: var(--sh-gradient-primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sh-footer-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* Bottom bar */
.sh-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--sh-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sh-footer-copyright {
  color: var(--sh-text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.sh-footer-copyright svg {
  width: 14px;
  height: 14px;
  color: #ef4444;
  fill: #ef4444;
}

.sh-footer-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sh-footer-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sh-text-muted);
  font-size: 0.875rem;
}

.sh-footer-status-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.sh-footer-scroll-top {
  width: 40px;
  height: 40px;
  border-radius: var(--sh-radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sh-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sh-footer-scroll-top:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  color: var(--sh-cyan);
}

.sh-footer-scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .sh-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sh-footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .sh-nav-menu,
  .sh-nav-buttons {
    display: none;
  }
  
  .sh-mobile-toggle {
    display: block;
  }
  
  .sh-hero {
    padding-top: 6rem;
  }
  
  .sh-hero-title {
    font-size: 2.5rem;
  }
  
  .sh-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .sh-hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sh-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sh-footer-brand {
    grid-column: span 1;
  }
  
  .sh-footer-newsletter-form {
    width: 100%;
  }
  
  .sh-footer-newsletter-form input {
    flex: 1;
    min-width: 0;
  }
  
  .sh-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sh-hero-stats {
    grid-template-columns: 1fr;
  }
  
  .sh-pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .sh-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SCROLLBAR PERSONALIZADA
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--sh-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: #1e3a5f;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sh-cyan);
}

/* ============================================
   SELECCIÓN DE TEXTO
   ============================================ */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: white;
}
