/* Minimalismo auténtico y limpio */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  color: var(--neutral-800);
  background: var(--neutral-50);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 20px; 
}
/* Estilos mejorados para CTA final */
.cta-alternative {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-secondary-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.btn-secondary-outline {
  background: transparent;
  color: var(--neutral-600);
  border: 2px solid var(--neutral-300);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-1px);
}

/* Mejoras responsivas para móviles */
@media (max-width: 768px) {
  .cta-home-actions {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .btn-whatsapp-large {
    justify-content: center;
  }
  
  .cta-secondary-actions {
    margin-top: 12px;
  }
}

/* Nuevo Hero Minimalista */
.hero-minimal {
  padding: 80px 0;
  background: var(--gradient-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content-minimal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title-clean {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-800);
  margin-bottom: 24px;
}

.highlight-text {
  color: var(--brand-blue);
  position: relative;
}

.hero-subtitle-clean {
  font-size: 1.25rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions-clean {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-clean {
  background: var(--brand-blue);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary-clean:hover {
  background: var(--brand-secondary-dark);
  transform: translateY(-1px);
}

.btn-secondary-clean {
  background: transparent;
  color: var(--brand-blue);
  padding: 16px 32px;
  border: 2px solid var(--brand-blue);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-secondary-clean:hover {
  background: var(--brand-blue);
  color: white;
}

.hero-stats-minimal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-minimal {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-top: 4px;
}

.hero-image-minimal {
  text-align: center;
}

.hero-image-minimal img {
  max-width: 100%;
  height: auto;
}

/* Servicios Minimalistas */
.services-minimal {
  padding: 80px 0;
  background: white;
}

.services-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card-minimal {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  transition: all 0.3s;
}

.service-card-minimal:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: var(--brand-blue);
}

.service-icon-minimal {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card-minimal h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 12px;
}

.service-card-minimal p {
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.service-link:hover {
  text-decoration: underline;
}

/* Responsive para hero minimalista */
@media (max-width: 768px) {
  .hero-content-minimal {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title-clean {
    font-size: 2.5rem;
  }
  
  .hero-actions-clean {
    justify-content: center;
  }
  
  .btn-primary-clean,
  .btn-secondary-clean {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  /* Responsive para elementos sutiles del hero */
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    gap: 16px;
    margin: 24px 0;
  }
  
  .stat-item {
    padding: 12px 16px;
    min-width: 120px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .hero-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .hero-divider {
    width: 40px;
    margin: 16px auto;
  }
  
  .hero-stats-minimal {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .stat-minimal {
    padding: 16px 12px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* Header con mejor paleta - FIJO EN TODAS LAS PÁGINAS */
/* Estilo glassmorphism oscuro con transparencia */
.site-header, #header-container {
  --sh-maxw: 1100px;
  --sh-text: #e5e7eb;
  --sh-muted: #9ca3af;
  --sh-border: rgba(255, 255, 255, 0.1);
  --sh-bg: rgba(11, 15, 20, 0.85);
  --sh-link: #e5e7eb;
  
  position: fixed !important; 
  top: 0 !important; 
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  background: var(--sh-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sh-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Asegurar que el contenido no se esconda detrás del header */
body {
  padding-top: 100px !important; /* Espacio para el header fijo - reducido */
}

/* Ajustes específicos para diferentes secciones */
.hero-minimal, .hero, .contact-hero {
  padding-top: 60px !important; /* Menos padding en heroes */
}

.site-header {
  --sh-maxw: 1100px;
  --sh-text: #e5e7eb;
  --sh-muted: #9ca3af;
  --sh-border: rgba(255, 255, 255, 0.1);
  --sh-bg: rgba(11, 15, 20, 0.85);
  --sh-link: #e5e7eb;
}
@media (prefers-color-scheme: dark){.site-header{--sh-text:#e5e7eb;--sh-muted:#9aa0a6;--sh-border:#2d3340;--sh-bg:rgba(11,15,20,0.9);--sh-link:#e5e7eb}}
.sh-wrap{max-width:var(--sh-maxw); margin:0 auto; padding:0 14px}

/* Top bar */
.sh-top{border-bottom:1px solid var(--sh-border); background:transparent}
.sh-top-list{display:flex; gap:16px; align-items:center; list-style:none; margin:0; padding:8px 0; color:var(--sh-muted); font-size:.92rem; flex-wrap:wrap}
.sh-top-link{display:inline-flex; gap:8px; align-items:center; text-decoration:none; color:var(--sh-muted)}
.sh-top-link:hover{color:var(--sh-text)}
@media (max-width:760px){.sh-top{display:none}}

/* Header principal */
.sh-main{background:var(--sh-bg)}
.sh-grid{display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:12px; padding:10px 0}
@media (max-width:960px){.sh-grid{grid-template-columns:auto auto; gap:10px}}

/* Marca limpia */
.sh-brand{
  display: flex; 
  gap: 12px; 
  align-items: center; 
  text-decoration: none; 
  color: var(--sh-link);
}

.sh-logo{
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.sh-name{
  font-size: 1.1rem; 
  font-weight: 600;
  color: var(--sh-text);
}

.sh-sub{
  display: block; 
  font-size: 0.85rem; 
  color: var(--sh-muted); 
  margin-top: 1px;
}

/* Navegación simple y limpia */
.sh-nav{display:flex; align-items:center; justify-content:center}

.sh-burger{
  display:none;
  width:40px;
  height:40px;
  border-radius:6px;
  border:1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  align-items:center;
  justify-content:center;
}

.sh-burger:hover{
  background: rgba(255, 255, 255, 0.2);
}

.sh-menu{
  display:flex; 
  gap:0; 
  list-style:none; 
  margin:0; 
  padding:0;
}

.sh-link{
  display:inline-block; 
  padding:12px 20px; 
  text-decoration:none; 
  color:var(--sh-link); 
  font-size:0.95rem;
  font-weight: 500;
  border-radius:0;
  transition: color 0.2s ease;
}

.sh-link:hover,
.sh-link:focus{
  color: var(--brand-secondary);
}
@media (prefers-color-scheme: dark){.sh-link:hover,.sh-link:focus{background:rgba(229,231,235,.08)}}

/* CTAs */
.sh-ctas{display:flex; gap:8px; justify-content:flex-end}

/* Responsive: menú móvil */
@media (max-width:960px){
  .sh-nav{justify-content:end}
  .sh-burger{display:inline-flex}
  .sh-menu{
    position:absolute; 
    inset:64px 14px auto 14px; 
    display:none; 
    flex-direction:column; 
    gap:6px; 
    padding:10px; 
    border:1px solid rgba(255, 255, 255, 0.1); 
    border-radius:14px; 
    background: rgba(11, 15, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index:20;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .sh-menu.is-open{display:flex}
  
  /* Botón móvil de iniciar sesión */
  .sh-menu-mobile-only {
    display: block !important;
  }
}
@media (max-width:760px){
  .sh-ctas{display:none}
}

/* Ocultar botón de sesión móvil en desktop */
@media (min-width:961px){
  .sh-menu-mobile-only {
    display: none !important;
  }
}

/* Legacy header classes - actualizadas para glassmorphism */
.logo, .sf-logo {
  width: 48px; height: 48px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.3rem;
  letter-spacing: 0.04em;
  box-shadow: 
    0 4px 16px rgba(102, 126, 234, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.logo:hover, .sf-logo:hover {
  transform: scale(1.05);
  box-shadow: 
    0 6px 20px rgba(102, 126, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.brand-info h1, .sf-name {
  font-size: 2.1rem; font-weight: 800; margin: 0;
  background: var(--gradient-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.brand-info .subtitle, .sf-sub {
  color: var(--neutral-600); font-size: 1.08rem; margin: 0; font-weight: 500;
}

.nav-link {
  color: #1a1a1a; text-decoration: none; font-weight: 600; padding: 10px 18px;
  border-radius: 12px; transition: all 0.3s ease; letter-spacing: 0.01em;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.nav-link:hover::before,
.nav-link:focus::before {
  opacity: 1;
}

.nav-link:hover, .nav-link:focus {
  color: var(--brand-secondary);
  transform: translateY(-1px);
}

.nav-link.active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  color: var(--brand-secondary); 
  font-weight: 700;
}
/* Botones con mejor paleta */
.btn, .btn-primary, .btn-secondary, .btn-whatsapp, .btn-contact {
  padding: 12px 24px; 
  border-radius: 8px; 
  text-decoration: none; 
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  cursor: pointer; 
  border: 1px solid var(--neutral-300);
  background: #fff;
  color: var(--neutral-800);
  transition: all 0.2s ease;
}

.btn:hover {
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5856eb 0%, #7c3aed 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  background: #f1f5f9;
  color: #475569;
  border-color: #cbd5e1;
}

.btn-secondary:hover {
  background: var(--neutral-300);
  color: #334155;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #20B858;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  color: #fff;
  text-decoration: none;
}
/* Hero con mejor diseño */

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-bottom: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* === Nuevos estilos sutiles para el hero === */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(10deg); }
}

.hero-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
  border-radius: 2px;
  margin: 20px auto;
  position: relative;
}

.hero-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ec4899, #f59e0b);
  border-radius: 2px;
  animation: line-fill 2s ease-in-out infinite;
}

@keyframes line-fill {
  0%, 100% { width: 0; }
  50% { width: 100%; }
}

.location-icon {
  margin-right: 8px;
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.btn-enhanced {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-enhanced:hover .btn-icon {
  transform: translateX(4px);
}

.btn-icon {
  transition: transform 0.3s ease;
  font-weight: bold;
}

/* === ESTILOS PÁGINA DE CONTACTO === */

/* Hero de Contacto */
.contact-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, var(--neutral-300) 100%);
  text-align: center;
}

.contact-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Sección Principal de Contacto */
.contact-main {
  padding: 80px 0;
  background: white;
}

.contact-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-section {
  padding-right: 20px;
}

.contact-items-list {
  margin: 40px 0;
}

.contact-item-large {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-item-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon-large {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 4px;
}

.contact-details small {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Botones de Acción Rápida */
.quick-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.btn-whatsapp-large,
.btn-email-large {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-whatsapp-large {
  background: #25d366;
  color: white;
}

.btn-whatsapp-large:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.btn-email-large {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.btn-email-large:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}

.btn-whatsapp-large span:first-child,
.btn-email-large span:first-child {
  font-size: 1.5rem;
}

.btn-whatsapp-large div,
.btn-email-large div {
  text-align: left;
}

.btn-whatsapp-large strong,
.btn-email-large strong {
  display: block;
  font-weight: 600;
}

.btn-whatsapp-large small,
.btn-email-large small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Formulario de Contacto */
.contact-form-section {
  padding-left: 20px;
}

.form-container {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--neutral-300);
}

.form-subtitle {
  color: var(--neutral-600);
  margin-bottom: 32px;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-submit {
  margin-top: 16px;
  width: 100%;
}

/* Responsive para Contacto */
@media (max-width: 968px) {
  .contact-grid-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 0;
  }
  
  .quick-actions {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 60px 0 40px;
  }
  
  .contact-hero-title {
    font-size: 2rem;
  }
  
  .contact-main {
    padding: 40px 0;
  }
  
  .form-container {
    padding: 24px;
  }
  
  .contact-item-large {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .contact-icon-large {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* === CTA HOME SECTION === */
.contact-cta-home {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, var(--neutral-300) 100%);
  text-align: center;
}

.cta-home-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-home-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 24px 0 20px;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-home-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-home-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-home-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-home-actions .btn-primary {
  flex-shrink: 0;
}

.cta-home-actions .btn-whatsapp-large {
  flex-shrink: 0;
}

/* Responsive para CTA Home */
@media (max-width: 768px) {
  .cta-home-title {
    font-size: 2.5rem;
  }
  
  .cta-home-stats {
    gap: 20px;
  }
  
  .cta-home-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-home-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .cta-home-title {
    font-size: 2rem;
  }
  
  .contact-cta-home {
    padding: 60px 0;
  }
  
  .cta-home-stats {
    gap: 16px;
    margin: 32px 0;
  }
}

.highlight { 
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-description {
  font-size: 1.2rem; 
  color: var(--neutral-600); 
  margin-bottom: 40px; 
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions { 
  display: flex; 
  gap: 16px; 
  justify-content: center;
  flex-wrap: wrap;
}
.hero-features { 
  display: grid; 
  grid-template-columns: repeat(2,1fr); 
  gap: 20px; 
  margin-bottom: 32px; 
}

.feature-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  border-radius: 16px; 
  padding: 20px 24px;
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-weight: 600; 
  color: #1a1a1a; 
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 4px 16px rgba(31, 38, 135, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(31, 38, 135, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon { 
  font-size: 1.4rem; 
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stats { 
  display: flex; 
  gap: 50px; 
  margin-bottom: 32px; 
  flex-wrap: wrap; 
  justify-content: flex-start; 
}

.stat { 
  text-align: left; 
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number { 
  font-size: 2.8rem; 
  font-weight: 800; 
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; 
  line-height: 1;
}

.stat-label { 
  color: var(--neutral-600); 
  font-size: 1rem; 
  font-weight: 500;
  margin-top: 4px;
}

.hero-actions { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  margin-top: 32px; 
}
/* Pricing Section - Minimalista */
.pricing {
  padding: 72px 0;
  background: var(--neutral-50);
}

.section-title {
  text-align: center; 
  font-size: 2.2rem; 
  font-weight: 700; 
  margin-bottom: 16px; 
  color: var(--neutral-900);
  letter-spacing: -0.02em;
}

.section-description {
  text-align: center; 
  font-size: 1.1rem; 
  color: var(--neutral-600); 
  margin-bottom: 40px; 
  max-width: 600px; 
  margin-left: auto; 
  margin-right: auto;
  line-height: 1.6;
}

.pricing-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  margin-bottom: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive para pricing-grid */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
  }
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--neutral-300); 
  border-radius: 12px; 
  padding: 32px 24px; 
  text-align: center; 
  position: relative; 
  transition: all 0.3s ease; 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-secondary);
}

.pricing-card.featured {
  border: 2px solid var(--brand-secondary);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured::after {
  content: '⭐ Más Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
}
.plan-name {
  font-size: 1.1rem; 
  font-weight: 600; 
  margin-bottom: 16px; 
  color: var(--neutral-900);
}

/* Imagen dentro de tarjetas */
.card-img{
  width:100%;
  max-width:220px;
  border-radius:10px;
  margin-bottom:10px;
  box-shadow:0 2px 8px #eee;
}

.price {
  font-size: 2.5rem; 
  font-weight: 700; 
  color: var(--brand-secondary);
  margin-bottom: 8px;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin-bottom: 6px;
}

.price-note { 
  font-weight: 500; 
  color: var(--neutral-600); 
  font-size: 0.85rem;
  margin-bottom: 24px;
  line-height: 1.3;
}

.features { 
  list-style: none; 
  text-align: left; 
  margin: 24px 0;
  padding: 0;
}

.features li {
  padding: 10px 0; 
  color: #475569; 
  display: flex; 
  align-items: flex-start; 
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
  border-bottom: 1px solid #f1f5f9;
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: "✓"; 
  color: #10b981; 
  font-weight: 600; 
  margin-top: 1px;
  flex-shrink: 0;
}
/* Tabs modernos y minimalistas */
.info-tabs { 
  padding: 80px 0; 
  background: var(--neutral-50);
}

.info-tabs .section-title {
  margin-bottom: 12px;
}

.info-tabs .section-description {
  margin-bottom: 48px;
}

.tabs-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Nuevo diseño con sidebar */
.tabs-container-sidebar {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding: 0 40px;
}

.sidebar-navigation {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-200);
}

.sidebar-tab {
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-700);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  margin-bottom: 8px;
  position: relative;
}

.sidebar-tab:hover {
  color: var(--brand-secondary);
  background: rgba(99, 102, 241, 0.08);
  transform: translateX(3px);
}

.sidebar-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.sidebar-tab.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #fff;
  border-radius: 0 2px 2px 0;
}

.sidebar-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.sidebar-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Estilos legacy para tabs horizontales */
.tab-navigation {
  display: flex;
  border-bottom: 2px solid var(--neutral-300);
  margin-bottom: 32px;
  overflow-x: auto;
  gap: 0;
}

.tab-button {
  padding: 16px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: fit-content;
}

.tab-button:hover {
  color: var(--brand-secondary);
  background: rgba(99, 102, 241, 0.05);
}

.tab-button.active {
  color: var(--brand-secondary);
  border-bottom-color: var(--brand-secondary);
  background: rgba(99, 102, 241, 0.08);
}

.tab-icon {
  font-size: 1.2rem;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); 
  gap: 32px; 
  margin: 0; 
}

.content-section {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--neutral-300);
  transition: all 0.3s ease;
}

.content-section:hover {
  border-color: var(--brand-secondary);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.content-section h4 {
  color: #0f172a !important; 
  margin-bottom: 24px; 
  font-size: 1.2rem; 
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-section h4::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.content-section h5 {
  color: #0f172a !important;
  font-weight: 600;
}

.content-section ul { 
  list-style: none; 
  padding: 0;
  margin: 0;
}

.content-section li {
  padding: 16px 0 16px 24px;
  color: #334155 !important;
  line-height: 1.65;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--neutral-100);
  position: relative;
}

.content-section li:last-child { 
  border-bottom: none; 
}

.content-section li::before {
  content: '•';
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 16px;
}

.content-section li strong {
  color: #0f172a !important;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 0.97rem;
}

/* Asegurar contraste en todos los textos */
.content-section p,
.content-section span,
.content-section div {
  color: #334155 !important;
}

/* Estilos para normativas destacadas */
.highlight-normative {
  background: rgba(249, 115, 22, 0.12);
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 4px solid var(--brand-orange);
  margin: 12px 0;
}

.highlight-normative strong {
  color: #c2410c !important;
}

.highlight-normative::before {
  color: var(--brand-secondary) !important;
}

.important-notice {
  background: #ffffff;
  border: 3px solid var(--brand-orange);
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 32px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}

.important-notice h5 {
  color: var(--brand-orange) !important;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.important-notice p {
  color: #1e293b !important;
  line-height: 1.75;
  font-size: 0.97rem;
  margin: 0;
}

.important-notice p strong {
  color: #c2410c !important;
}

.important-notice .highlight-normative {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.important-notice * {
  color: #1e293b !important;
}

.important-notice strong {
  color: #c2410c !important;
}

.time-policy-highlight {
  background: #ffffff;
  border: 3px solid var(--brand-secondary);
  border-radius: 14px;
  padding: 32px 36px;
  margin-top: 36px;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.15);
}

.time-policy-highlight h4 {
  color: var(--brand-secondary) !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.time-policy-highlight h4::before {
  display: none;
}

.time-policy-highlight p {
  color: #1e293b !important;
  line-height: 1.8;
  font-size: 1.02rem;
}

/* Estilos para FAQ */
.faq-item {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--neutral-200);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item strong {
  color: #0f172a !important;
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
}

.faq-item p {
  color: #334155 !important;
  line-height: 1.75;
  font-size: 0.97rem;
  margin: 0;
}

/* Caja de introducción amigable */
.intro-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid #3b82f6;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.intro-box p {
  color: #1e40af !important;
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0;
}

.intro-box strong {
  color: #1e3a8a !important;
  font-weight: 600;
}

/* Tarjeta de beneficios destacada */
.benefits-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #22c55e;
  position: relative;
  padding: 32px 36px;
  margin-bottom: 28px;
}

.benefits-card::before {
  content: '⭐';
  position: absolute;
  top: -12px;
  right: 20px;
  background: #22c55e;
  color: white;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.benefits-card h4 {
  color: #166534 !important;
}

/* Reglas globales para asegurar contraste en todos los tabs */
.tab-content * {
  color: #334155;
}

.tab-content h1,
.tab-content h2,
.tab-content h3,
.tab-content h4,
.tab-content h5,
.tab-content h6 {
  color: #0f172a !important;
}

.tab-content strong {
  color: #0f172a !important;
}

.tab-content li {
  color: #334155 !important;
}

.tab-content p {
  color: #334155 !important;
}

.tab-content span {
  color: #334155 !important;
}

/* Sobrescribir colores específicos */
.tab-content .highlight-normative strong {
  color: #c2410c !important;
}

.tab-content .important-notice h5 {
  color: #ea580c !important;
}

/* Responsive tabs */
@media (max-width: 968px) {
  .tabs-container-sidebar {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .sidebar-navigation {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 16px;
  }
  
  .sidebar-tab {
    margin-bottom: 0;
    padding: 16px 18px;
  }
}

@media (max-width: 640px) {
  .info-tabs {
    padding: 60px 0;
  }
  
  .sidebar-navigation {
    grid-template-columns: 1fr;
  }
  
  .sidebar-tab {
    padding: 16px 18px;
    font-size: 0.92rem;
  }
  
  .sidebar-icon {
    font-size: 1.3rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .content-section {
    padding: 24px;
  }
  
  .content-section h4 {
    font-size: 1.05rem;
  }
  
  .content-section li {
    font-size: 0.92rem;
    padding: 10px 0;
  }
}

/* Legacy responsive tabs */
@media (max-width: 768px) {
  .tab-navigation {
    flex-direction: column;
    border-bottom: none;
    border-right: 2px solid var(--neutral-300);
    margin-bottom: 0;
    margin-right: 24px;
    max-width: 200px;
  }
  
  .tabs-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }
  
  .tab-button {
    border-bottom: none;
    border-right: 3px solid transparent;
    justify-content: flex-start;
  }
  
  .tab-button.active {
    border-bottom: none;
    border-right-color: var(--brand-secondary);
  }
}

@media (max-width: 640px) {
  .tabs-container {
    display: block;
  }
  
  .tab-navigation {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 2px solid var(--neutral-300);
    margin-right: 0;
    margin-bottom: 24px;
    max-width: none;
  }
  
  .tab-button {
    border-right: none;
    border-bottom: 3px solid transparent;
  }
  
  .tab-button.active {
    border-right: none;
    border-bottom-color: var(--brand-secondary);
  }
}
/* Contact con mejor paleta */
.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: var(--neutral-900); 
  padding: 64px 0; 
  text-align: center; 
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid var(--brand-secondary);
}

.faq-item strong {
  color: var(--neutral-800);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.faq-item p {
  margin: 0;
  color: var(--neutral-600);
  line-height: 1.6;
}

.content-section h4 {
  color: var(--neutral-800);
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-section ul li strong {
  color: #374151;
  font-weight: 600;
}

.contact-title {
  font-size: 2rem; 
  font-weight: 700; 
  margin-bottom: 16px; 
  color: var(--neutral-900);
}

.contact-description {
  font-size: 1.1rem; 
  margin-bottom: 24px; 
  max-width: 500px; 
  margin-left: auto; 
  margin-right: auto; 
  color: var(--neutral-600);
  line-height: 1.6;
}

.btn-contact { 
  background: #10b981;
  color: #fff;
  border-color: transparent;
}

.btn-contact:hover { 
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.contact-note {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.contact-note strong {
  color: var(--neutral-900);
  font-weight: 600;
}

/* Site Footer Styles - Modern Dark Glassmorphism */
.site-footer{
  --sf-text: #e5e7eb;
  --sf-muted: #9ca3af;
  --sf-border: rgba(255, 255, 255, 0.1);
  --sf-bg: rgba(11, 15, 20, 0.95);
  color: var(--sf-text);
  background: var(--sf-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--sf-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  margin-top: auto;
}
.site-footer .sf-container{max-width:1100px; margin:0 auto; padding:20px 24px}

/* Layout minimalista */
.sf-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .sf-minimal {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Información mínima */
.sf-minimal-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--sf-muted);
}

@media (max-width: 768px) {
  .sf-minimal-info {
    flex-direction: column;
    gap: 4px;
  }
}

.sf-brand-mini {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.sf-copy {
  font-size: 0.8rem;
  color: #9ca3af;
}

.site-footer .sf-social{display:flex; gap:12px; align-items:center; justify-content:center; margin:0}

/* Nuevos estilos para iconos sociales animados - Versión minimalista */
.social-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Contenedores sociales */
.socialContainer {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Instagram */
.containerOne:hover {
  background-color: #d62976;
  border-color: #d62976;
  transition-duration: 0.3s;
  transform: scale(1.1);
}

/* Email */
.containerTwo:hover {
  background-color: var(--brand-secondary);
  border-color: var(--brand-secondary);
  transition-duration: 0.3s;
  transform: scale(1.1);
}

/* WhatsApp */
.containerFour:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  transition-duration: 0.3s;
  transform: scale(1.1);
}

.socialContainer:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 15px;
  height: 15px;
}

.socialSvg path {
  fill: #e5e7eb;
  transition: fill 0.3s ease;
}

.socialContainer:hover .socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-4px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.site-footer .sf-bottom a{color:var(--brand-secondary); text-decoration:none}
.site-footer .sf-bottom a:hover{text-decoration:underline; color:var(--brand-accent)}

/* === LANDING PAGE STYLES === */

/* Hero Landing Principal */
.hero-landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Placeholder: usar imagen real de sala terapéutica */
  background: linear-gradient(135deg, #f8fafc 0%, var(--neutral-300) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99,102,241,0.85) 0%, rgba(139,92,246,0.75) 100%);
  z-index: -1;
}

.hero-content-landing {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-title-main {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.highlight-gradient {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions-main {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary-large {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: var(--neutral-800);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 4px 20px rgba(251,191,36,0.3);
  transition: all 0.3s;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251,191,36,0.4);
}

.btn-secondary-outline {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.btn-secondary-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Secciones Generales */
.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-large {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Showcase de Espacios */
.spaces-showcase {
  padding: 100px 0;
  background: #f8fafc;
}

.spaces-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.space-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.space-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.main-space {
  grid-row: span 2;
}

.space-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.main-space .space-image {
  height: 350px;
}

.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Placeholder para imágenes reales */
  background: linear-gradient(135deg, var(--neutral-300) 0%, #cbd5e1 100%);
}

.space-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: var(--neutral-800);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.space-content {
  padding: 24px;
}

.space-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 12px;
}

.space-content p {
  color: var(--neutral-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

.space-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
}

.spaces-cta {
  text-align: center;
}

/* Cómo Funciona */
.how-it-works {
  padding: 100px 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--neutral-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.step-image {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Placeholder para imágenes reales */
  background: linear-gradient(135deg, var(--neutral-300) 0%, #cbd5e1 100%);
}

/* Testimonios */
.testimonials {
  padding: 100px 0;
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.testimonial-card.featured {
  grid-row: span 2;
  background: var(--gradient-accent);
  color: white;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.quote-icon {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  /* Placeholder para fotos reales */
  background: linear-gradient(135deg, var(--neutral-300) 0%, #cbd5e1 100%);
}

.author-info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Servicios Extra */
.extra-services {
  padding: 100px 0;
  background: white;
}

.services-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.service-icon {
  font-size: 1.5rem;
  margin-top: 4px;
}

.service-item strong {
  display: block;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 4px;
}

.service-item p {
  color: var(--neutral-600);
  line-height: 1.5;
}

.services-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-outline {
  background: transparent;
  color: var(--brand-secondary);
  border: 2px solid var(--brand-secondary);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--brand-secondary);
  color: white;
}

.btn-text {
  background: transparent;
  color: var(--neutral-600);
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}

.btn-text:hover {
  color: var(--brand-secondary);
}

/* CTA Final */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--neutral-800) 0%, #334155 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-note {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .spaces-grid {
    grid-template-columns: 1fr;
  }
  
  .main-space {
    grid-row: span 1;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card.featured {
    grid-row: span 1;
  }
  
  .services-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-actions-main,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-item strong {
    font-size: 1.5rem;
  }
}

/* Reveal on scroll (minimal, elegante) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* === HERO SKILLINE STYLE === */
.hero-skilline {
  background: #FFF8F0; /* Color crema suave */
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 90vh;
  padding-top: 2rem;
}

.hero-content-col {
  padding-right: 2rem;
}

.hero-title-modern {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2F327D;
  margin-bottom: 1.5rem;
}

.text-primary {
  color: var(--brand-secondary);
}

.hero-subtitle-modern {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--neutral-600);
  margin-bottom: 2.5rem;
}

.hero-actions-modern {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--brand-secondary);
  color: white;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-hero-primary:hover {
  background: #5856eb;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-video {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-video:hover {
  transform: scale(1.05);
}

.video-play-btn {
  width: 3.5rem;
  height: 3.5rem;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.play-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.125rem;
}

.video-text {
  font-weight: 500;
  color: #2F327D;
}

.hero-visual-col {
  position: relative;
}

/* === Hero Image Container === */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  z-index: 1;
}

.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gradient-primary);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.image-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.building-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.image-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.image-content p {
  font-size: 1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  padding: 2rem;
  display: flex;
  align-items: flex-end;
}

.overlay-content {
  width: 100%;
}

.workspace-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.hero-main-visual:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: var(--gradient-primary);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.image-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.building-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.image-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.image-content p {
  font-size: 1rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* === Hero Main Image (legacy) === */
.hero-main-image {
  width: 85%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Elementos flotantes */
.floating-element {
  position: absolute;
  z-index: 10;
}

.floating-stats {
  top: 5rem;
  left: -1rem;
  animation: floating 3s ease-in-out infinite;
}

.floating-access {
  top: 8rem;
  right: -2rem;
  animation: floating 4s ease-in-out infinite;
}

.floating-community {
  bottom: 8rem;
  left: -1.5rem;
  animation: floating 3.5s ease-in-out infinite;
}

.floating-rating {
  bottom: 4rem;
  right: 2rem;
  animation: floating 4.5s ease-in-out infinite;
}

.floating-card {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-card {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-secondary);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-top: 0.25rem;
}

.access-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.access-icon {
  font-size: 1.5rem;
}

.access-text span {
  font-weight: 600;
  color: #2F327D;
  display: block;
}

.access-text small {
  color: var(--neutral-600);
  font-size: 0.75rem;
}

.community-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.community-avatars {
  display: flex;
  gap: 0.25rem;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border: 2px solid white;
}

.rating-card {
  text-align: center;
}

.rating-stars {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Animaciones flotantes */
@keyframes floating {
  0% { transform: translate(0, 0px); }
  50% { transform: translate(0, 10px); }
  100% { transform: translate(0, 0px); }
}

/* Wave transition */
.hero-wave {
  color: white;
  margin-top: -3rem;
  position: relative;
  z-index: 20;
}

.wave-svg {
  width: 100%;
  height: 6rem;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero-content-col {
    padding-right: 0;
    order: 2;
  }
  
  .hero-visual-col {
    order: 1;
  }
  
  .hero-title-modern {
    font-size: 2.5rem;
  }
  
  .hero-actions-modern {
    justify-content: center;
  }
  
  .floating-element {
    display: none; /* Ocultar elementos flotantes en móvil */
  }
  
  .hero-image-placeholder {
    height: 300px;
    margin: 0 1rem;
  }
  
  .building-icon {
    font-size: 3rem;
  }
  
  .image-content h3 {
    font-size: 1.3rem;
  }
  
  .building-icon {
    font-size: 3rem;
  }
  
  .image-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 640px) {
  .hero-title-modern {
    font-size: 2rem;
  }
  
  .hero-subtitle-modern {
    font-size: 1.1rem;
  }
  
  .hero-actions-modern {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-hero-primary {
    width: 100%;
    text-align: center;
  }
  
  .hero-image-placeholder {
    height: 250px;
    margin: 0 0.5rem;
  }
  
  .building-icon {
    font-size: 2.5rem;
  }
  
  .image-content h3 {
    font-size: 1.2rem;
  }
  
  .image-content p {
    font-size: 0.9rem;
  }
  
  .building-icon {
    font-size: 2.5rem;
  }
  
  .image-content h3 {
    font-size: 1.2rem;
  }
  
  .image-content p {
    font-size: 0.9rem;
  }
}

/* ============================
   ESTILOS PÁGINA CONTACTO
   ============================ */

/* Hero de Contacto */
.contact-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, 
    rgba(46, 125, 50, 0.05) 0%, 
    rgba(255, 87, 34, 0.05) 50%,
    rgba(46, 125, 50, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 87, 34, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 2rem 0;
}

.contact-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.location-icon {
  font-size: 1.5rem;
}

/* Sección Principal de Contacto */
.contact-main {
  padding: 80px 0;
}

.contact-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Información de Contacto */
.contact-info-section h2 {
  margin-bottom: 2rem;
}

.contact-items-list {
  margin-bottom: 3rem;
}

.contact-item-large {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-item-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
  border-color: rgba(46, 125, 50, 0.2);
}

.contact-icon-large {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-details p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.contact-details small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Botones de Acción Rápida */
.quick-actions {
  display: flex;
  gap: 1rem;
}

.btn-whatsapp-large,
.btn-email-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  text-align: left;
}

.btn-whatsapp-large {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.btn-email-large {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
}

.btn-whatsapp-large:hover,
.btn-email-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp-large span,
.btn-email-large span {
  font-size: 1.5rem;
}

.btn-whatsapp-large div strong,
.btn-email-large div strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.btn-whatsapp-large div small,
.btn-email-large div small {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Formulario de Contacto */
.contact-form-section {
  position: relative;
}

.form-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(46, 125, 50, 0.05);
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-submit {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Sección de Ubicación */
.location-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.02) 0%, rgba(255, 87, 34, 0.02) 100%);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-features {
  margin-top: 2rem;
}

.location-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

.location-feature:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.5rem;
  width: 50px;
  text-align: center;
}

.location-feature strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.location-feature p {
  color: var(--text-secondary);
  margin: 0;
}

/* Mapa */
.map-container {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(46, 125, 50, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.map-content {
  padding: 2rem;
}

.map-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.map-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-title-large {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.1);
  border-color: rgba(46, 125, 50, 0.2);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Final */
.contact-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }
  
  .contact-hero-title {
    font-size: 2.5rem;
  }
  
  .contact-grid-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .quick-actions {
    flex-direction: column;
  }
  
  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title-large {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .contact-main {
    padding: 60px 0;
  }
  
  .location-section {
    padding: 60px 0;
  }
  
  .faq-section {
    padding: 60px 0;
  }
  
  .contact-cta {
    padding: 80px 0;
  }
  
  .contact-hero-subtitle {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
}

/* ========================================
   NUEVAS SECCIONES INDEX.PHP
   Añadido: 5 de Octubre, 2025
   ======================================== */

/* Hero Minimal - Limpio y profesional */
.hero-minimal {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: white;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.text-primary {
  color: #a78bfa;
}

.hero-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a78bfa, transparent);
  margin: 2rem auto;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 1.5rem 0;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.location-icon {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

/* Sección Espacios */
.spaces {
  padding: 5rem 2rem;
  background: var(--neutral-50);
}

.reveal {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.space-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.space-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.main-space {
  grid-column: span 2;
}

.space-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.space-image img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

.space-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fbbf24;
  color: #78350f;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.space-content {
  padding: 2rem;
}

.space-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.space-content p {
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.space-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.spaces-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cómo Funciona */
.how-it-works {
  padding: 5rem 2rem;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step-item {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-image {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.step-image img {
  width: 100%;
  height: auto;
}

/* Testimonios */
.testimonials {
  padding: 5rem 2rem;
  background: var(--neutral-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
  background: var(--gradient-primary);
  color: white;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-info strong,
.testimonial-card.featured .author-info span {
  color: white;
}

.quote-icon {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--brand-secondary);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-card.featured .quote-icon {
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f5f9;
}

.author-info strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.25rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* Servicios Adicionales */
.extra-services {
  padding: 5rem 2rem;
  background: white;
}

.services-content {
  max-width: 900px;
  margin: 0 auto;
}

.services-text {
  text-align: center;
  margin-bottom: 3rem;
}

.services-description {
  font-size: 1.125rem;
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.service-item:hover {
  background: #ede9fe;
}

.service-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.service-item strong {
  display: block;
  font-size: 1.125rem;
  color: var(--neutral-800);
  margin-bottom: 0.25rem;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  margin: 0;
}

.services-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-secondary);
  color: var(--brand-secondary);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--brand-secondary);
  color: white;
}

.btn-text {
  background: transparent;
  border: none;
  color: var(--brand-secondary);
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: var(--brand-accent-alt);
}

/* CTA Home */
.contact-cta-home {
  padding: 5rem 2rem;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.cta-home-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-home-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.cta-home-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 1.5rem 0 3rem;
}

.cta-home-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-home-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.btn-enhanced {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

.btn-icon {
  font-size: 1.5rem;
  font-weight: 700;
}

.btn-whatsapp-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #16a34a;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
  background: #15803d;
  transform: scale(1.05);
}

.btn-whatsapp-large span:first-child {
  font-size: 2rem;
}

.btn-whatsapp-large strong {
  display: block;
  font-size: 1.125rem;
}

.btn-whatsapp-large small {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
}

.cta-alternative {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-note {
  margin-bottom: 1.5rem;
}

.cta-note small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cta-secondary-actions {
  display: flex;
  justify-content: center;
}

.btn-secondary-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: white;
  color: var(--brand-secondary);
}

/* Responsive para nuevas secciones */
@media (max-width: 768px) {
  .hero-minimal {
    min-height: 50vh;
    padding: 3rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title-large {
    font-size: 2rem;
  }
  
  .spaces-grid {
    grid-template-columns: 1fr;
  }
  
  .main-space {
    grid-column: span 1;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .cta-home-title {
    font-size: 2rem;
  }
  
  .cta-home-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-home-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-whatsapp-large {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   NUEVO INDEX PROFESIONAL Y LIMPIO
   Actualizado: 5 de Octubre, 2025
   ======================================== */

/* Hero Home - Landing Principal */
.hero-home {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-home-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-home-content {
  max-width: 600px;
}

.hero-home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-home-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-home-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.hero-home-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--brand-secondary);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  color: var(--brand-secondary);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.hero-home-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-mini {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-mini strong {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
}

.stat-mini span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Visual Decorativo */
.hero-home-visual {
  position: relative;
  height: 500px;
}

.visual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-card.card-1 {
  width: 280px;
  height: 360px;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.visual-card.card-2 {
  width: 240px;
  height: 320px;
  top: 60px;
  right: 40px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.1) 100%);
}

.visual-card.card-3 {
  width: 200px;
  height: 280px;
  bottom: 0;
  left: 60px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
}

/* Sección de Valor */
.value-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.value-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #6f42c1 50%, transparent 100%);
  border-radius: 2px;
}

.value-container {
  max-width: 1200px;
  margin: 0 auto;
}

.value-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.value-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.value-header p {
  font-size: 1.125rem;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.7;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-12px);
  border-color: #6f42c1;
  box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-card.featured {
  background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 100%);
  color: white;
  transform: scale(1.05);
  border-color: #6f42c1;
  box-shadow: 0 8px 32px rgba(111, 66, 193, 0.25), 0 4px 12px rgba(111, 66, 193, 0.15);
}

.value-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
  box-shadow: 0 20px 48px rgba(111, 66, 193, 0.35), 0 8px 20px rgba(111, 66, 193, 0.2);
}

.value-card.featured h3,
.value-card.featured p {
  color: white;
}

.value-card.featured .value-icon svg {
  stroke: white;
}

.value-card.featured .value-link {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.value-card.featured .value-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.1) 0%, rgba(139, 92, 246, 0.08) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(111, 66, 193, 0.15);
  border: 2px solid rgba(111, 66, 193, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.15) 0%, rgba(139, 92, 246, 0.12) 100%);
  border-color: rgba(111, 66, 193, 0.3);
}

.value-card.featured .value-icon {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.value-icon svg {
  stroke: #6f42c1;
  stroke-width: 2;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon svg {
  stroke: #8b5cf6;
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.value-card p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.value-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-secondary);
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--brand-secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-link:hover {
  background: var(--brand-secondary);
  color: white;
}

/* Proceso Simple */
.process-simple {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
}

.process-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #8b5cf6 50%, transparent 100%);
  border-radius: 2px;
}

.process-container {
  max-width: 900px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.process-header p {
  font-size: 1.125rem;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.7;
}

.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  max-width: 250px;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  font-weight: 400;
}

.timeline-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent-alt));
  margin: 0 1rem;
  flex-shrink: 0;
}

.process-cta {
  text-align: center;
}

.btn-process {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

.btn-process:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(102, 126, 234, 0.4);
  color: white;
}

/* CTA Final */
.cta-final-home {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 50%, #6f42c1 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(167, 139, 250, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-final-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-final-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.cta-final-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.cta-final-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: #6f42c1;
  padding: 1.25rem 3rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: #6f42c1;
  background: #ffffff;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.cta-final-info {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.cta-final-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Responsive para nuevo index */
@media (max-width: 1024px) {
  .hero-home-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-home-visual {
    height: 300px;
    display: none;
  }

  .hero-home-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-home {
    min-height: 70vh;
    padding: 3rem 1.5rem;
  }

  .hero-home-title {
    font-size: 2rem;
  }

  .hero-home-description {
    font-size: 1.125rem;
  }

  .hero-home-stats {
    gap: 2rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card.featured {
    transform: scale(1);
  }

  .value-card.featured:hover {
    transform: translateY(-8px) scale(1);
  }

  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-step {
    max-width: 100%;
  }

  .timeline-connector {
    display: none;
  }

  .cta-final-text h2 {
    font-size: 2rem;
  }

  .cta-final-actions {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   DISEÑO ULTRA PROFESIONAL PREMIUM
   Actualizado: 5 de Octubre, 2025
   Nivel: Clase Mundial
   ======================================== */

/* Hero Ultra - El diseño más profesional posible */
.hero-ultra {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 0;
}

/* Fondo animado con orbes de gradiente */
.hero-ultra-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111, 66, 193, 0.4) 0%, rgba(111, 66, 193, 0.1) 50%, transparent 100%);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}

.hero-gradient-orb.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(99, 102, 241, 0.1) 50%, transparent 100%);
  bottom: -10%;
  left: -8%;
  animation-delay: 7s;
}

.hero-gradient-orb.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.08) 50%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Contenedor Hero Ultra */
.hero-ultra-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-ultra-content {
  color: #1a1a2e;
}

/* Badge Premium con animaciones */
.hero-ultra-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.12) 0%, rgba(139, 92, 246, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(111, 66, 193, 0.2);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(111, 66, 193, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #6f42c1;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

.badge-separator {
  color: rgba(111, 66, 193, 0.4);
  font-weight: 300;
}

.badge-highlight {
  color: #10b981;
  font-weight: 700;
}

/* Título Ultra Premium */
.hero-ultra-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  color: #1a1a2e;
}

.title-gradient {
  background: linear-gradient(135deg, #6f42c1 0%, #8b5cf6 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  font-weight: 800;
  position: relative;
}

/* Subtítulo elegante */
.hero-ultra-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2.5rem;
  font-weight: 500;
  max-width: 600px;
}

/* Botones Ultra Premium */
.hero-ultra-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-ultra-primary {
  position: relative;
  padding: 1.125rem 2.5rem;
  background: var(--gradient-secondary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.0625rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 0 0 1px rgba(99, 102, 241, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
}

.btn-ultra-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5), 0 0 0 1px rgba(99, 102, 241, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-ultra-primary:hover .btn-shine {
  left: 100%;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-ultra-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ultra-secondary {
  padding: 1.125rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(99, 102, 241, 0.1);
  color: var(--neutral-800);
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.0625rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
}

.btn-ultra-secondary:hover {
  background: white;
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Trust Bar - Indicadores de confianza premium */
.hero-trust-bar {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border-radius: 12px;
  flex-shrink: 0;
}

.trust-icon svg {
  color: var(--brand-secondary);
}

.trust-text strong {
  display: block;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.trust-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* Visual Premium - Tarjetas flotantes */
.hero-ultra-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-premium-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.visual-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: floatCard 6s ease-in-out infinite;
}

.visual-floating-card.card-primary {
  width: 280px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.visual-floating-card.card-secondary {
  width: 260px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.visual-floating-card.card-tertiary {
  width: 240px;
  bottom: 10%;
  left: 25%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent-alt), #f093fb);
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(20px);
}

.visual-floating-card:hover .card-glow {
  opacity: 0.6;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border-radius: 16px;
  margin-bottom: 1rem;
}

.card-icon svg {
  color: var(--brand-secondary);
}

.visual-floating-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.visual-floating-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Hero Ultra */
@media (max-width: 1200px) {
  .hero-ultra-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3rem 2rem;
  }

  .hero-ultra-title {
    font-size: 3.5rem;
  }

  .hero-ultra-visual {
    height: 400px;
  }

  .hero-trust-bar {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-ultra-title {
    font-size: 2.5rem;
  }

  .hero-ultra-subtitle {
    font-size: 1.125rem;
  }

  .hero-ultra-actions {
    flex-direction: column;
  }

  .btn-ultra-primary,
  .btn-ultra-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-bar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trust-divider {
    display: none;
  }

  .hero-ultra-visual {
    height: 300px;
    display: none;
  }

  .hero-gradient-orb {
    filter: blur(60px);
  }
}