/* DentexaPro Landing Styles */
/* Color system (mantiene colores del CMS) */
:root{
  --primary:#2F96EE;
  --primary-600:#2387dc;
  --ink:#0A1B2B;
  --ink-2:#122537;
  --bg:#0a1622;
  --muted:#F5F9FF;
  --hover:#E6F2FF;
  --white:#FFFFFF;
}

html, body { height: 100%; }
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol";
  min-height: 100vh;
  background: radial-gradient(1200px 800px at 10% -10%, rgba(47,150,238,.25), transparent 40%),
              radial-gradient(900px 700px at 100% 10%, rgba(47,150,238,.15), transparent 50%),
              linear-gradient(180deg, #0a1622 0%, #09131d 100%);
  background-attachment: fixed;
  color: var(--muted);
  overflow-x: hidden;
}

/* Typography */
h1,h2,h3,h4,h5,h6{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
  color:#fff;
}
.text-body{ color: var(--muted); }
.opacity-85{ opacity:.85 }
.opacity-80{ opacity:.8 }
a{ color: var(--primary); }
a:hover{ color: var(--primary-600); }

/* Glassmorphism */
.glass-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  backdrop-filter: saturate(120%) blur(12px);
  -webkit-backdrop-filter: saturate(120%) blur(12px);
  padding: 1.25rem;
}
.glass-nav{
  background: rgba(10,27,43,.45);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.glass-input{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
}
.glass-input::placeholder{ color: rgba(255,255,255,.6); }
.glass-input:focus{
  background: rgba(255,255,255,.08);
  border-color: rgba(47,150,238,.5);
  box-shadow: 0 0 0 0.25rem rgba(47,150,238,.15);
}

/* Select dropdown styling */
.form-select.glass-input{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.form-select.glass-input option{
  background: var(--ink-2);
  color: #fff;
}
.form-select.glass-input:focus{
  background: rgba(255,255,255,.08);
  border-color: rgba(47,150,238,.5);
  box-shadow: 0 0 0 0.25rem rgba(47,150,238,.15);
}

/* Form enhancements */
.form-check-input:checked{
  background-color: var(--primary);
  border-color: var(--primary);
}
.form-check-input:focus{
  box-shadow: 0 0 0 0.25rem rgba(47,150,238,.15);
}

/* Alert styling */
.alert{
  border: 1px solid rgba(255,255,255,.1);
}
.alert-success{
  background: rgba(34,197,94,.15);
  border-color: rgba(34,197,94,.3);
  color: #86efac;
}
.alert-danger{
  background: rgba(239,68,68,.15);
  border-color: rgba(239,68,68,.3);
  color: #fca5a5;
}

/* Gradient accents */
.gradient-text{
  background: linear-gradient(90deg, var(--primary) 0%, #68c4ff 50%, #9ad8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass-gradient{
  background: linear-gradient(135deg, rgba(47,150,238,.35), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 24px;
}

/* Sections */
.section-pt{ padding-top: 4rem; }
.section-py{ padding: 5rem 0; }
.section-py-sm{ padding: 3rem 0; }
.border-ink-subtle{ border-color: rgba(255,255,255,.08) !important; }

/* Hero */
.hero{
  padding-top: 5rem;
}
.ui-preview{
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* Feature cards */
.feature-card{ padding: 26px; }
.feature-card{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(47,150,238,.25);
}
.feature-card h3{ color:#fff; font-size: 1.1rem; margin-top: .5rem; margin-bottom: .5rem; }
.feature-card p{ color: rgba(255,255,255,.85); margin: 0; }
.feature-icon{
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(47,150,238,.18);
  color: #9ad8ff; font-size: 1.3rem;
  border: 1px solid rgba(47,150,238,.35);
  transition: all 0.3s ease;
}

/* CTA */

.cta-banner{ padding: 28px 28px; }
.cta-banner{
  transition: transform 0.3s ease;
}
.cta-banner:hover{
  transform: scale(1.02);
}
.btn-primary{
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-600);
  --bs-btn-hover-border-color: var(--primary-600);
  --bs-btn-active-bg: var(--primary-600);
  --bs-btn-active-border-color: var(--primary-600);
  box-shadow: 0 10px 30px rgba(47,150,238,.35);
}
.btn-primary-soft{
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(47,150,238,.12);
  --bs-btn-border-color: rgba(47,150,238,.35);
  --bs-btn-hover-bg: rgba(47,150,238,.22);
  --bs-btn-hover-border-color: rgba(47,150,238,.55);
}

/* Pricing */
.price-card h3{ color:#fff }
.price-card{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(47,150,238,.3);
}
.price-card .price-badge{
  display:inline-block; font-size:.75rem; letter-spacing:.02em;
  padding:.35rem .6rem; border-radius:999px; background: rgba(255,255,255,.08); color:#fff; margin-bottom:.5rem;
}
.price-card .price-amount{ transition: .2s ease; }
.price-card{ position: relative; }
.price-card.border-primary{ box-shadow: 0 0 0 1px rgba(47,150,238,.55) inset; }

/* Trust badges */
.trust-badge{
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  display: inline-block;
  padding: .6rem 1rem;
  font-size: .9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
}
.trust-badge:hover{
  background: rgba(47,150,238,.15);
  border-color: rgba(47,150,238,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47,150,238,.2);
}
.trust-badge i {
  color: #68c4ff;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}



/* Staggered animation for trust badges */
.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.3s; }
.trust-badge:nth-child(4) { animation-delay: 0.4s; }

/* Responsive enhancements */
@media (max-width: 768px) {
  .floating-elements {
    display: none; /* Hide floating icons on mobile for performance */
  }
  
  .tilt-card:hover {
    transform: translateY(-5px); /* Simpler effect on mobile */
  }
  
  .magnetic-hover:hover {
    transform: translateY(-5px) scale(1.01); /* Reduced effect on mobile */
  }
}

/* Accordion tweaks */
.accordion-item{
  background: transparent;
  border: none;
}
.accordion-button{
  background: rgba(255,255,255,.06);
  color: #fff;
}
.accordion-button:not(.collapsed){
  background: rgba(47,150,238,.18);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.accordion-body{ color: rgba(255,255,255,.85); }
.accordion-button::after{ filter: invert(1) contrast(1.5); }

/* Floating Action Button */
.fab-cta{
  position: fixed; right: 18px; bottom: 18px;
  width: 56px; height: 56px; border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(145deg, var(--primary), #68c4ff);
  color: #07131e; font-size: 1.25rem;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 14px 40px rgba(47,150,238,.45);
  z-index: 1040;
  transition: all 0.3s ease;
  animation: pulse-fab 3s ease-in-out infinite;
}
.fab-cta:hover{ transform: translateY(-2px); color:#000; }

/* WhatsApp Floating Button — actualizado */
.whatsapp-float{
  position: fixed; right: 24px; bottom: 15px; /* pegado abajo */
  width: 70px; height: 70px; border-radius: 20px;
  display:grid; place-items:center;
  background: linear-gradient(145deg, var(--primary), #68c4ff);
  color: #fff; font-size: 1.8rem;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 16px 50px rgba(47,150,238,.5);
  z-index: 1050;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: heartbeat-single 5s ease-in-out infinite; /* latido único cada 5s */
  will-change: transform;
}
.whatsapp-float:hover{ 
  transform: scale(1.1); 
  color:#fff; 
  box-shadow: 0 20px 60px rgba(47,150,238,.7);
}

/* Animaciones auxiliares */
@keyframes pulse-whatsapp{
  0%,100%{ box-shadow: 0 16px 50px rgba(47,150,238,.5); }
  50%{ box-shadow: 0 16px 50px rgba(47,150,238,.8), 0 0 0 15px rgba(47,150,238,.25); }
}
@keyframes heartbeat-single {
  0%, 95%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); } /* el latido */
}

/* Background blobs */
.bg-blobs{
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
}
.bg-blobs span{
  position: absolute; border-radius: 999px; filter: blur(60px); opacity: .5;
  animation: float 20s ease-in-out infinite;
}
.bg-blobs span:nth-child(1){
  width: 380px; height: 380px; background: rgba(47,150,238,.35); top: -40px; left: -40px;
}
.bg-blobs span:nth-child(2){
  width: 420px; height: 420px; background: rgba(106,192,255,.28); bottom: -100px; right: 10%;
  animation-delay: -6s;
}
.bg-blobs span:nth-child(3){
  width: 300px; height: 300px; background: rgba(154,216,255,.25); top: 40%; left: 70%;
  animation-delay: -12s;
}
@keyframes float{
  0%,100%{ transform: translateY(0) translateX(0) scale(1); }
  33%{ transform: translateY(-30px) translateX(15px) scale(1.08); }
  66%{ transform: translateY(10px) translateX(-10px) scale(0.95); }
}

@keyframes pulse-fab{
  0%,100%{ box-shadow: 0 14px 40px rgba(47,150,238,.45); }
  50%{ box-shadow: 0 14px 40px rgba(47,150,238,.65), 0 0 0 8px rgba(47,150,238,.15); }
}

/* Buttons & links */
.btn-outline-light{
  --bs-btn-color:#fff;
  --bs-btn-border-color:rgba(255,255,255,.35);
  --bs-btn-hover-bg:rgba(255,255,255,.12);
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-border-color:rgba(255,255,255,.6);
  transition: all 0.3s ease;
}

/* Glass card hover effects */
.glass-card{
  transition: all 0.3s ease;
}
.glass-card:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

/* Utilities */
.border-primary{ border-color: var(--primary) !important; }

/* Admin Configuration Tabs */
.nav-pills .nav-link {
  border-radius: 12px;
  margin: 0 4px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.nav-pills .nav-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

.nav-pills .nav-link.active {
  background: rgba(47,150,238,0.2);
  border-color: rgba(47,150,238,0.4);
  color: #68c4ff;
}

.tab-content {
  min-height: 400px;
}

/* Batalla de Sistemas Styles */
.battle-arena {
  position: relative;
  background: linear-gradient(135deg, rgba(220,53,69,0.1), rgba(47,150,238,0.1));
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.battle-arena::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(47,150,238,0.1), transparent, rgba(220,53,69,0.1), transparent);
  animation: battle-arena-rotate 8s linear infinite;
  z-index: -1;
}

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

/* VS Badge */
.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc3545, #ffc107, #28a745);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vs-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.vs-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.vs-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: vs-glow-pulse 2s ease-in-out infinite;
}

@keyframes vs-pulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(255,255,255,0.6);
  }
}

@keyframes vs-glow-pulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Battle Sides */
.battle-side {
  position: relative;
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.traditional-side {
  background: rgba(220,53,69,0.1);
  border: 1px solid rgba(220,53,69,0.3);
}

.traditional-side:hover {
  background: rgba(220,53,69,0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(220,53,69,0.2);
}

.dentexapro-side {
  background: rgba(47,150,238,0.1);
  border: 1px solid rgba(47,150,238,0.3);
}

.dentexapro-side:hover {
  background: rgba(47,150,238,0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(47,150,238,0.2);
}

/* Battle Avatars */
.battle-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  position: relative;
  animation: battle-avatar-float 3s ease-in-out infinite;
}

.traditional-avatar {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #fff;
  box-shadow: 0 10px 30px rgba(220,53,69,0.4);
}

.dentexapro-avatar {
  background: linear-gradient(135deg, #2F96EE, #68c4ff);
  color: #fff;
  box-shadow: 0 10px 30px rgba(47,150,238,0.4);
}

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

/* Battle Stats */
.battle-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.battle-stat-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.battle-stat-item.losing {
  background: rgba(220,53,69,0.1);
  border: 1px solid rgba(220,53,69,0.2);
}

.battle-stat-item.winning {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
}

.battle-stat-item:hover {
  transform: translateX(5px);
}

.battle-stat-item.losing:hover {
  background: rgba(220,53,69,0.15);
  box-shadow: 0 5px 20px rgba(220,53,69,0.2);
}

.battle-stat-item.winning:hover {
  background: rgba(34,197,94,0.15);
  box-shadow: 0 5px 20px rgba(34,197,94,0.2);
}

.battle-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.battle-stat-content {
  flex-grow: 1;
}

.battle-stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.battle-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Battle Problems & Advantages */
.battle-problem-item,
.battle-advantage-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.battle-problem-item:hover,
.battle-advantage-item:hover {
  padding-left: 0.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}

.battle-problem-item:last-child,
.battle-advantage-item:last-child {
  border-bottom: none;
}

/* Battle Center Effects */
.battle-center {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.battle-energy-beam {
  width: 4px;
  height: 100px;
  background: linear-gradient(180deg, #dc3545, #ffc107, #28a745);
  border-radius: 2px;
  animation: energy-beam-pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

@keyframes energy-beam-pulse {
  0%, 100% { 
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% { 
    transform: scaleY(1.2);
    opacity: 1;
  }
}

.battle-sparks {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffc107;
  border-radius: 50%;
  animation: spark-fly 2s ease-out infinite;
}

.spark-1 { animation-delay: 0s; }
.spark-2 { animation-delay: 0.4s; }
.spark-3 { animation-delay: 0.8s; }
.spark-4 { animation-delay: 1.2s; }
.spark-5 { animation-delay: 1.6s; }

@keyframes spark-fly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--spark-x, 50px), var(--spark-y, -50px)) scale(0);
    opacity: 0;
  }
}

.spark-1 { --spark-x: 40px; --spark-y: -30px; }
.spark-2 { --spark-x: -35px; --spark-y: -40px; }
.spark-3 { --spark-x: 30px; --spark-y: 35px; }
.spark-4 { --spark-x: -40px; --spark-y: 25px; }
.spark-5 { --spark-x: 0px; --spark-y: -60px; }

/* Battle Background Effects */
.battle-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.battle-lightning {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, transparent, #ffc107, transparent);
  opacity: 0;
  animation: lightning-strike 4s ease-in-out infinite;
}

.battle-lightning-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.battle-lightning-2 {
  top: 60%;
  right: 25%;
  animation-delay: 1.5s;
}

.battle-lightning-3 {
  top: 40%;
  left: 70%;
  animation-delay: 3s;
}

@keyframes lightning-strike {
  0%, 90%, 100% { opacity: 0; }
  91%, 93%, 95% { opacity: 1; }
  92%, 94% { opacity: 0.3; }
}

/* Battle Winner Badge */
.battle-winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ffc107, #fd7e14);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(255,193,7,0.4);
  animation: winner-badge-glow 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.battle-winner-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: winner-shine 3s ease-in-out infinite;
}

@keyframes winner-badge-glow {
  0%, 100% { 
    box-shadow: 0 10px 30px rgba(255,193,7,0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 15px 40px rgba(255,193,7,0.6);
    transform: scale(1.05);
  }
}

@keyframes winner-shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.winner-text {
  background: linear-gradient(45deg, #000, #333, #000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: winner-text-glow 2s ease-in-out infinite;
}

@keyframes winner-text-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(0,0,0,0.5); }
  50% { text-shadow: 0 0 20px rgba(0,0,0,0.8); }
}

/* Battle CTA Button */
.battle-cta-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  box-shadow: 0 10px 30px rgba(40,167,69,0.4);
  animation: battle-cta-pulse 3s ease-in-out infinite;
}

.battle-cta-btn::before {
  content: '';
  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.6s ease;
}

.battle-cta-btn:hover::before {
  left: 100%;
}

.battle-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(40,167,69,0.6);
}

@keyframes battle-cta-pulse {
  0%, 100% { 
    box-shadow: 0 10px 30px rgba(40,167,69,0.4);
  }
  50% { 
    box-shadow: 0 15px 40px rgba(40,167,69,0.6);
  }
}

/* Responsive Battle */
@media (max-width: 991.98px) {
  .vs-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 2rem auto;
    display: flex;
  }
  
  .battle-arena::before {
    animation: none; /* Reduce motion on mobile */
  }
  
  .battle-side {
    padding: 1.5rem;
  }
  
  .battle-avatar {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .battle-stat-item {
    padding: 0.75rem;
  }
  
  .battle-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .battle-arena::before,
  .vs-badge,
  .battle-avatar,
  .battle-energy-beam,
  .spark,
  .battle-lightning,
  .battle-winner-badge {
    animation: none !important;
  }
  
  .battle-cta-btn {
    animation: none !important;
  }
}

/* Battle Hover Effects */
.battle-stat-item.winning::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.2), transparent);
  transition: left 0.6s ease;
}

.battle-stat-item.winning:hover::before {
  left: 100%;
}

.battle-stat-item.losing::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220,53,69,0.2), transparent);
  transition: left 0.6s ease;
}

.battle-stat-item.losing:hover::before {
  left: 100%;
}

/* Reviews/Testimonials */
.review-card{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(47,150,238,.25);
}
.review-avatar{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(47,150,238,.3);
}
.review-stars{
  font-size: 0.9rem;
}
.review-card blockquote{
  font-style: italic;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid rgba(47,150,238,.4);
}
.review-card blockquote::before{
  content: '"';
  font-size: 2rem;
  color: rgba(47,150,238,.6);
  position: absolute;
  left: -0.5rem;
  top: -0.5rem;
  font-family: serif;
}

/* Testimonials Carousel for Mobile */
.carousel-indicators {
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(47, 150, 238, 0.2);
  border: 1px solid rgba(47, 150, 238, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(47, 150, 238, 0.4);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

/* Smooth carousel transitions */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Custom AOS animations */

/* Typing animation styles */
.typing-text {
  color: #68c4ff;
  border-right: 2px solid #68c4ff;
  animation: blink-cursor 1s infinite;
  min-height: 1.2em;
  display: inline-block;
}

@keyframes blink-cursor {
  0%, 50% { border-color: #68c4ff; }
  51%, 100% { border-color: transparent; }
}

/* Animated gradient text */
.animated-gradient {
  background: linear-gradient(-45deg, var(--primary), #68c4ff, #9ad8ff, var(--primary));
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating icons animation */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  color: rgba(47,150,238,0.3);
  font-size: 2rem;
  animation: float-around var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; }
.floating-icon:nth-child(3) { top: 60%; left: 5%; }
.floating-icon:nth-child(4) { bottom: 30%; right: 10%; }
.floating-icon:nth-child(5) { bottom: 10%; left: 20%; }
.floating-icon:nth-child(6) { top: 30%; left: 80%; }
.floating-icon:nth-child(7) { top: 70%; right: 25%; }
.floating-icon:nth-child(8) { bottom: 50%; left: 8%; }
.floating-icon:nth-child(9) { top: 45%; right: 5%; }
.floating-icon:nth-child(10) { bottom: 15%; right: 40%; }

@keyframes float-around {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-10px) translateX(-15px) rotate(180deg);
    opacity: 0.4;
  }
  75% { 
    transform: translateY(-30px) translateX(5px) rotate(270deg);
    opacity: 0.5;
  }
}

/* Magnetic hover effect */
.magnetic-hover {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.magnetic-hover:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Tilt effect for cards */
.tilt-card {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateY(-10px);
}

/* Glow border effect */
.glow-border {
  position: relative;
  overflow: hidden;
}

.glow-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), #68c4ff, #9ad8ff, var(--primary));
  background-size: 400% 400%;
  border-radius: 24px;
  z-index: -1;
  animation: glowRotate 3s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes glowRotate {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Enhanced button effects */
.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(47,150,238,.35);
}

.btn-glow::before {
  content: '';
  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.6s ease;
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-shimmer {
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.pulse-on-hover:hover {
  animation: pulse-glow 1s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 10px 30px rgba(47,150,238,.35);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 15px 40px rgba(47,150,238,.6);
    transform: scale(1.05);
  }
}

/* Features section background grid */
.features-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(47,150,238,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,150,238,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Enhanced feature icons */
.feature-icon {
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.feature-card:hover .feature-icon::before {
  width: 100px;
  height: 100px;
}

/* Pricing cards enhanced */
.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(47,150,238,0.1), transparent);
  animation: rotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-card:hover::after {
  opacity: 1;
}

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

/* Testimonials enhanced */
.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47,150,238,0.1), transparent);
  transition: left 0.8s ease;
}

.review-card:hover::before {
  left: 100%;
}

/* Morphing shapes */
.morphing-shape {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(47,150,238,0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* Particle system */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(47,150,238,0.6);
  border-radius: 50%;
  animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  50% { 
    transform: translateY(-100px) translateX(50px);
    opacity: 0.8;
  }
}

/* Text reveal animation */
.text-reveal {
  overflow: hidden;
  position: relative;
}

.text-reveal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: translateX(-100%);
  animation: reveal 1.5s ease-out forwards;
}

@keyframes reveal {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* Enhanced trust badges */
/* CMS Preview Carousel Enhancements */
#cmsPreviewCarousel {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

#cmsPreviewCarousel .carousel-item img {
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#cmsPreviewCarousel:hover .carousel-item.active img {
  transform: scale(1.02);
}

#cmsPreviewCarousel .carousel-caption {
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  padding: 15px 20px;
  bottom: 20px;
  left: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#cmsPreviewCarousel .carousel-caption h5 {
  color: #68c4ff;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

#cmsPreviewCarousel .carousel-caption p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  font-size: 0.9rem;
}

#cmsPreviewCarousel .carousel-indicators {
  bottom: -40px;
  margin-bottom: 0;
}

#cmsPreviewCarousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 6px;
  transition: all 0.3s ease;
}

#cmsPreviewCarousel .carousel-indicators .active {
  background-color: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(47,150,238,0.5);
}

#cmsPreviewCarousel .carousel-control-prev,
#cmsPreviewCarousel .carousel-control-next {
  width: 45px;
  height: 45px;
  background: rgba(47, 150, 238, 0.8);
  border: 1px solid rgba(47, 150, 238, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

#cmsPreviewCarousel:hover .carousel-control-prev,
#cmsPreviewCarousel:hover .carousel-control-next {
  opacity: 1;
}

#cmsPreviewCarousel .carousel-control-prev {
  left: 15px;
}

#cmsPreviewCarousel .carousel-control-next {
  right: 15px;
}

#cmsPreviewCarousel .carousel-control-prev:hover,
#cmsPreviewCarousel .carousel-control-next:hover {
  background: rgba(47, 150, 238, 1);
  transform: translateY(-50%) scale(1.1);
}

#cmsPreviewCarousel .carousel-control-prev-icon,
#cmsPreviewCarousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Enhanced UI Preview */
.ui-preview {
  position: relative;
  transition: all 0.3s ease;
}

.ui-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(47,150,238,0.3);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  #cmsPreviewCarousel .carousel-item img {
    height: 300px;
  }
  
  #cmsPreviewCarousel .carousel-caption {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px 15px;
  }
  
  #cmsPreviewCarousel .carousel-caption h5 {
    font-size: 1rem;
  }
  
  #cmsPreviewCarousel .carousel-caption p {
    font-size: 0.8rem;
  }
}

[data-aos="slide-right"] {
  transform: translate3d(-100px, 0, 0);
  opacity: 0;
}
[data-aos="slide-right"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="slide-left"] {
  transform: translate3d(100px, 0, 0);
  opacity: 0;
}
[data-aos="slide-left"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="slide-up"] {
  transform: translate3d(0, 80px, 0);
  opacity: 0;
}
[data-aos="slide-up"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="zoom-in-up"] {
  transform: translate3d(0, 40px, 0) scale(0.9);
  opacity: 0;
}
[data-aos="zoom-in-up"].aos-animate {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

[data-aos="flip-up"] {
  transform: perspective(400px) rotateX(80deg);
  opacity: 0;
}
[data-aos="flip-up"].aos-animate {
  transform: perspective(400px) rotateX(0deg);
  opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .hero{ padding-top: 3rem; }
  .section-py{ padding: 3.5rem 0; }
}

/* Reduced motion (regla original que apaga animaciones) */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* Excepción: mantener el latido del botón de WhatsApp incluso con "reducir movimiento" */
@media (prefers-reduced-motion: reduce){
  .whatsapp-float { animation: heartbeat-single 5s ease-in-out infinite !important; }
}

/* Fix para evitar layout shift durante animaciones AOS */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}



/* Prevenir layout shift en elementos con AOS */
[data-aos="slide-right"],
[data-aos="slide-left"],
[data-aos="slide-up"],
[data-aos="fade-up"],
[data-aos="zoom-in"],
[data-aos="fade-down"] {
  opacity: 0;
  visibility: hidden;
}

[data-aos="slide-right"].aos-animate,
[data-aos="slide-left"].aos-animate,
[data-aos="slide-up"].aos-animate,
[data-aos="fade-up"].aos-animate,
[data-aos="zoom-in"].aos-animate,
[data-aos="fade-down"].aos-animate {
  opacity: 1;
  visibility: visible;
}

/* Asegurar que los containers mantengan su estructura */
.container,
.container-fluid {
  min-height: 1px; /* Previene colapso durante animaciones */
}

/* Fix específico para secciones que se desalinean */
.section-py,
.section-pt,
.section-py-sm {
  position: relative;
  width: 100%;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Prevenir que las filas de Bootstrap se desalineen */
.row {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}

.row > * {
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
  max-width: 100%;
}

/* Fix específico para la sección features */
#features {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

#features .container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

#features .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
}

/* Prevenir layout shift en navegación por anchor */
section[id] {
  scroll-margin-top: 80px;
  position: relative;
}

/* Asegurar que los containers mantengan su ancho */
.container {
  width: 100% !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Fix para elementos con AOS que causan layout shift */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Solo aplicar animaciones después de que la página esté completamente cargada */
.aos-loaded [data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.aos-loaded [data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Hace que el texto de las características de los planes sea celeste */
#plansModal ul li {
  color: #2F96EE !important;
}

/* Hace celeste el texto de las descripciones de planes */
#pricing .price-card p,
#pricing .price-card ul li {
  color: #2F96EE !important;
}

/* Timeline styles for tickets */
.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-marker {
  position: absolute;
  left: -12px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-content {
  margin-left: 8px;
}

/* Ticket priority indicators */
.priority-urgent {
  border-left: 4px solid #dc3545;
}

.priority-high {
  border-left: 4px solid #ffc107;
}

.priority-medium {
  border-left: 4px solid #17a2b8;
}

.priority-low {
  border-left: 4px solid #6c757d;
}

/* Fix dropdown overflow in tables */
.table-responsive {
  overflow-x: auto;
  overflow-y: visible;
}

.dropdown-menu {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1060;
}

/* Ensure dropdowns in tables work properly */
.table .dropdown {
  position: static;
}

.table .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
  min-width: 200px;
}



.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47,150,238,0.2), transparent);
  transition: left 0.6s ease;
}

/* For last few rows, use dropup */

.table tbody tr:nth-last-child(-n+2) .dropdown-menu {
  top: auto;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(47,150,238,.4);
}

.trust-badge:hover::before {
  left: 100%;
}

/* --- FIX BOTONES PRICING --- */
/* 1) No bloquear clics por wrappers con AOS */
#pricing [data-aos] {
  pointer-events: auto !important;
}

/* 2) El overlay decorativo de la tarjeta NO debe interceptar clics */
.price-card::after,
.price-card:hover::after {
  pointer-events: none !important;
  z-index: -1 !important;   /* mándalo detrás del contenido */
}

/* 3) Asegurar que los botones queden arriba de todo */
.price-card .btn {
  position: relative;
  z-index: 2;
}

/* (Opcional, recomendado para recortes limpios del overlay) */
.price-card { overflow: hidden; }

.carousel-caption {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  text-align: center;
}

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
  position: relative;
  
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 150px; /* sombreado lateral */
  height: 100%;
  z-index: 2;
}



.logo_items {
  display: inline-block;
  animation: 40s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 60px; /* ajusta tamaño logos */
  margin: 0 25px;
  filter: grayscale(80%);        /* desatura solo un poco */
  opacity: 0.85;                 /* y le baja la intensidad */
  transition: all 0.3s ease;
}

.logo_items img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* EXCEPCIÓN para que el carrusel de logos NO se apague con reduce motion */
@media (prefers-reduced-motion: reduce){
  .logo_items { 
    animation: 15s slides infinite linear !important;
  }
}

/* Pausar la animación solo en desktop con hover disponible */
@media (hover: hover) {
  .logos:hover .logo_items {
    animation-play-state: paused;
  }
}

/* CTA */
/* CTA limpio sin márgenes ni paddings */
.cta-banner2 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  
   height: auto;
  padding: 0px 0 !important; /* Añade 50px de padding arriba y abajo */
}

.cta-banner2:hover {
  transform: scale(1.02);
}

/* Si adentro hay container o row de Bootstrap, también sin espacio */
.cta-banner2 .container,
.cta-banner2 .row {
  margin: 0 !important;
  padding: 0 !important;
  height: auto;
}

.btn-primary{
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-600);
  --bs-btn-hover-border-color: var(--primary-600);
  --bs-btn-active-bg: var(--primary-600);
  --bs-btn-active-border-color: var(--primary-600);
  box-shadow: 0 10px 30px rgba(47,150,238,.35);
}
.btn-primary-soft{
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(47,150,238,.12);
  --bs-btn-border-color: rgba(47,150,238,.35);
  --bs-btn-hover-bg: rgba(47,150,238,.22);
  --bs-btn-hover-border-color: rgba(47,150,238,.55);
}

.glass-gradient3 {
  background-image: url("fondocontainer.png"); /* Ruta a tu imagen */
  background-size: cover;   /* La imagen ocupa todo el div */
  background-position: center; /* Centrada */
  background-repeat: no-repeat; /* Evita repeticiones */
  
 
}

.glass-gradient4{
 background-image: url("fondocontainer2.png"); /* Ruta a tu imagen */
  background-size: cover;   /* La imagen ocupa todo el div */
  background-position: center; /* Centrada */
  background-repeat: no-repeat; /* Evita repeticiones */
}

.glow-green {
  box-shadow: 0 30px 70px rgba(33, 116, 218, 0.4); /* Opacidad al 40% (más transparente) */
}



#cta.section-py {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

footer {
  padding-top: 5px !important;
  margin-top: 5px !important;
}

/* Feature cards 2 *


.feature-card2 {
  padding: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  background: 
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), 
    url("fondocontainer2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/