/* =================================================================== */
/* ===    FASTALK - HOJA DE ESTILOS "CLEAN & PRODUCTION READY"     === */
/* ===    Optimizada para: index.html (Landing Page Principal)     === */
/* =================================================================== */

/* ------------------------- */
/* 1. VARIABLES & RESET      */
/* ------------------------- */
:root {
  /* --- Paleta Principal --- */
  --color-bg-light: #f7f8fc;
  --color-bg-secondary-light: #ffffff;
  --color-border-light: #eef0f4;

  /* --- Texto --- */
  --color-text-primary: #1d2b48;
  --color-text-secondary: #5a647b;
  --color-text-tertiary: #9a9faf;
  --color-text-medium: #a0a8b7;
  /* Usado en planes dark */

  /* --- Acento (Azul Eléctrico) --- */
  --color-accent-primary: #4a3aff;
  --color-accent-secondary: #7a70ff;
  --color-accent-dark: #2c238c;
  --color-accent-subtle-bg: rgba(74, 58, 255, 0.07);

  /* --- Gradientes --- */
  --gradient-accent: linear-gradient(95deg, var(--color-accent-secondary), var(--color-accent-primary));
  --gradient-accent-hover: linear-gradient(95deg, #8a80ff, #5a50ff);
  --gradient-text: linear-gradient(95deg, var(--color-accent-secondary), var(--color-accent-primary));

  /* --- Sombras --- */
  --shadow-light-sm: 0 2px 8px rgba(74, 58, 255, 0.06);
  --shadow-light-md: 0 4px 16px rgba(74, 58, 255, 0.08);
  --shadow-light-lg: 0 10px 30px rgba(74, 58, 255, 0.12);
  --shadow-button-glow: 0 6px 20px rgba(74, 58, 255, 0.25);

  /* --- Radios y Transiciones --- */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-pill: 50px;
  --transition-smooth: 0.2s cubic-bezier(0.2, 0, 0.1, 0.5);
  --transition-bouncy: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-text-primary) #ffffff;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-light);
  color: var(--color-text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.mobile-nav-active {
  overflow: hidden;
}

/* Scrollbar Webkit */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-text-primary);
  border-radius: 100px;
  border: 3px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-accent-primary);
}

/* ------------------------- */
/* 2. UTILIDADES GLOBALES    */
/* ------------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 4.2rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -1.5px;
}

.section-subtitle {
  font-size: clamp(1rem, 2.3vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 700px;
}

.section-subtitle {
  color: var(--color-text-secondary);
  /* Asegura el color correcto */
  text-align: center;
  /* Asegura que esté centrado */
  margin: 0 auto 3rem auto;
  /* Asegura espaciado inferior adecuado */
  max-width: 700px;
  /* Limita ancho para legibilidad */
}

/* Grid Utilities */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid--4-cols {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Buttons */
.button {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-align: center;
  border-radius: var(--border-radius-pill);
}

.button--primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-light-md);
}

.button--primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-button-glow);
  background: var(--gradient-accent-hover);
}

.button--secondary {
  background-color: transparent;
  color: var(--color-accent-primary);
  border: 1.5px solid var(--color-border-light);
  font-weight: 600;
}

.button--secondary:hover {
  background-color: var(--color-accent-subtle-bg);
  border-color: var(--color-accent-primary);
  transform: translateY(-2px);
}

.button--secondary-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1.5px solid transparent;
}

.button--secondary-dark:hover {
  background-color: #ffffff;
  color: var(--color-accent-dark);
  transform: translateY(-2px);
}

.button--text-dark {
  color: var(--color-text-medium);
  font-weight: 500;
  padding: 10px 15px;
  transition: color var(--transition-smooth), gap var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.button--text-dark:hover {
  color: #ffffff;
  gap: 1rem;
}

.button--text-dark .material-icons {
  transition: transform var(--transition-smooth);
}

.button--text-dark:hover .material-icons {
  transform: translateX(5px);
}


/* ------------------------- */
/* 3. ANIMACIONES (Scroll)   */
/* ------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  transition: opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.grid .animate-on-scroll:nth-child(1) {
  transition-delay: 0.1s;
}

.grid .animate-on-scroll:nth-child(2) {
  transition-delay: 0.15s;
}

.grid .animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.grid .animate-on-scroll:nth-child(4) {
  transition-delay: 0.25s;
}

.grid .animate-on-scroll:nth-child(5) {
  transition-delay: 0.3s;
}

.grid .animate-on-scroll:nth-child(6) {
  transition-delay: 0.35s;
}


/* ------------------------- */
/* 4. NAVBAR PREMIUM         */
/* ------------------------- */
.navbar-premium {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 99;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-premium.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
}

.navbar-premium__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  max-width: 1600px;
  margin: 0 auto;
}

.navbar-premium__logo-img {
  height: 48px;
  object-fit: contain;
}

.navbar-premium__desktop-nav,
.navbar-premium__actions {
  display: none;
}

@media (min-width: 1024px) {
  .navbar-premium__desktop-nav {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-premium__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .navbar-premium__actions .button {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .navbar-premium__toggle {
    display: none;
  }
}

.navbar-premium__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.navbar-premium__links>li>a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-text-primary);
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius-md);
  transition: color var(--transition-smooth), background-color var(--transition-smooth);
}

.navbar-premium__links>li>a:hover {
  background-color: var(--color-accent-subtle-bg);
  color: var(--color-accent-primary);
}

.navbar-premium__links>li>a .material-icons {
  font-size: 20px;
  transition: transform var(--transition-smooth);
}

.nav-item--has-megamenu:hover>a .material-icons {
  transform: rotate(180deg);
}

.nav-item--has-megamenu {
  position: relative;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  pointer-events: none;
  z-index: 1100;
}

.nav-item--has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu__content {
  width: auto;
  max-width: calc(100vw - 4rem);
  background-color: var(--color-bg-secondary-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-light-lg);
  padding: 2rem;
  overflow: hidden;
}

.mega-menu__product,
.mega-menu__use-cases {
  display: flex;
  flex-direction: column;
}

.mega-menu__grid--product {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mega-menu__grid--use-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.mega-menu__grid--resources {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

.mega-menu__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-lg);
  text-decoration: none;
  transition: background-color var(--transition-smooth), transform var(--transition-smooth);
}

.mega-menu-item:hover {
  background-color: var(--color-accent-subtle-bg);
  transform: translateY(-3px);
}

.mega-menu-item .material-icons {
  font-size: 24px;
  color: var(--color-accent-primary);
  background-color: var(--color-accent-subtle-bg);
  padding: 10px;
  border-radius: var(--border-radius-md);
  flex-shrink: 0;
  transition: transform var(--transition-bouncy);
}

.mega-menu-item:hover .material-icons {
  transform: scale(1.15) rotate(-8deg);
}

.mega-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-item__title {
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.mega-item__description {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* Featured Item in Menu */
.featured-item {
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-smooth);
  min-width: 300px;
}

.featured-item:hover {
  box-shadow: var(--shadow-light-md);
}

.featured-item__image {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.featured-item__content {
  padding: 1.25rem;
  flex-grow: 1;
}

.featured-item__tag {
  background: var(--gradient-text);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.featured-item__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0.75rem 0;
  font-size: 1rem;
  line-height: 1.4;
}

.featured-item__link {
  font-weight: 500;
  color: var(--color-accent-primary);
  text-decoration: none;
  font-size: 0.9rem;
}

.featured-item__link:hover {
  text-decoration: underline;
}

/* ========================================= */
/* === FIX: BOTÓN HAMBURGUESA VISIBILIDAD === */
/* ========================================= */

/* 1. Estilos Base (Se muestra en Móvil y Tablet por defecto) */
.navbar-premium__toggle {
  display: block;
  width: 35px;
  height: 30px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

/* 2. Media Query para Escritorio (Pantallas mayores a 1024px) */
/* Aquí es donde forzamos que desaparezca */
@media (min-width: 1024px) {
  .navbar-premium__toggle {
    display: none !important;
    /* El !important asegura que se oculte */
  }

  /* Aseguramos que el menú de escritorio y las acciones se muestren */
  .navbar-premium__desktop-nav {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-premium__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ------------------------- */
/* 5. SIDEBAR MÓVIL          */
/* ------------------------- */
.navbar-premium__toggle {
  display: block;
  width: 35px;
  height: 30px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-text-primary);
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger-line:nth-child(1) {
  top: 6px;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 6px;
}

body.mobile-nav-active .navbar-premium__toggle {
  position: fixed;
  right: 5%;
  top: 1.25rem;
}

body.mobile-nav-active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

body.mobile-nav-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

body.mobile-nav-active .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-nav-premium {
  position: fixed;
  top: 0;
  left: 0;
  width: 90%;
  max-width: 320px;
  height: 100vh;
  z-index: 1001;
  background-color: #f8f9fc;
  background-image: radial-gradient(circle at top right, rgba(74, 58, 255, 0.05), transparent 40%);
  box-shadow: 10px 0 50px -20px rgba(29, 43, 72, 0.15);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s;
  display: flex;
  flex-direction: column;
}

body.mobile-nav-active .mobile-nav-premium {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__scrollable-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  padding-top: 6rem;
}

.mobile-nav__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.mobile-nav__profile-icon {
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  background: var(--gradient-text);
  color: #fff;
}

.mobile-nav__greeting {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 1.1rem;
}

.mobile-nav__sub-greeting {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.mobile-nav__main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__main-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-smooth);
}

.mobile-nav__main-nav a:hover {
  background-color: var(--color-accent-subtle-bg);
  color: var(--color-accent-primary);
  transform: translateX(5px);
}

.mobile-nav__main-nav a .material-icons {
  color: var(--color-text-tertiary);
  transition: color var(--transition-smooth);
}

.mobile-nav__main-nav a:hover .material-icons {
  color: var(--color-accent-primary);
}

.mobile-nav__separator {
  height: 1px;
  background-color: var(--color-border-light);
  margin: 1.5rem 0;
  border: none;
}

.mobile-nav__secondary-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav__sticky-footer {
  flex-shrink: 0;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border-light);
  background-color: #f8f9fc;
}

.mobile-nav__socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.mobile-nav__socials a {
  color: var(--color-text-tertiary);
  transition: color var(--transition-smooth);
}

.mobile-nav__socials a:hover {
  color: var(--color-accent-primary);
}

.mobile-nav__socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mobile-nav__copyright {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
  text-align: center;
}


/* ------------------------- */
/* 6. HERO SECTION           */
/* ------------------------- */
.hero.section {
  padding-top: 180px;
  padding-bottom: 120px;
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Cuadrícula Hero */
.hero.section::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(74, 58, 255, 0.2) 1px, transparent 1px),
    linear-gradient(to right, rgba(74, 58, 255, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  mask-image: radial-gradient(circle at center, white 20%, transparent 80%);
  z-index: 0;
}

.hero.section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  max-width: 1200px;
  background: radial-gradient(circle, rgba(74, 58, 255, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.hero__text-content {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.hero__title {
  color: var(--color-text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 8.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero__subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ------------------------- */
/* 7. CLIENTES (Logos)       */
/* ------------------------- */
.client-logos {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border-light);
}

.client-logos__title {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
  line-height: 1.5;
}

.client-logos__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
  mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.client-logos__track {
  display: flex;
  width: calc(250px * 12);
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-250px * 6));
  }
}

.client-logos__slider:hover .client-logos__track {
  animation-play-state: paused;
}

.client-logo-item {
  flex-shrink: 0;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.client-logo-item img {
  max-height: 38px;
  width: auto;
  filter: grayscale(100%) opacity(0.6);
  transition: all var(--transition-smooth);
}

.client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}


/* ------------------------- */
/* 8. DEMO INTERACTIVA       */
/* ------------------------- */
.interactive-demo {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, #ffffff 100%);
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: visible;
}

.demo-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.badge-premium {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(74, 58, 255, 0.08);
  color: var(--color-accent-primary);
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(74, 58, 255, 0.2);
}

.demo-stage {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
}

.demo-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(74, 58, 255, 0.18) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

/* Browser Window */
.browser-window {
  position: relative;
  z-index: 2;
  background-color: #111522;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  width: fit-content;
  max-width: 100%;
}

.browser-window:hover {
  transform: translateY(-5px);
}

.browser-header {
  background-color: #1a1f33;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.browser-dots {
  display: flex;
  gap: 6px;
  margin-right: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red {
  background-color: #ff5f56;
}

.dot--yellow {
  background-color: #ffbd2e;
}

.dot--green {
  background-color: #27c93f;
}

.browser-address-bar {
  flex-grow: 1;
  background-color: rgba(0, 0, 0, 0.2);
  color: #7a8299;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lock-icon {
  font-size: 12px;
  color: #28a745;
}

/* Content Wrapper & Iframe Scaling */
.browser-content-wrapper {
  position: relative;
  background-color: #000;
  overflow: hidden;
  width: 320px;
  height: 180px;
  transition: width 0.3s ease, height 0.3s ease;
}

.fixed-scale-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1280px;
  height: 720px;
  border: none;
  transform-origin: top left;
  transform: scale(0.25);
  transition: transform 0.3s ease;
}

/* Media Queries Demo */
@media (min-width: 768px) {
  .browser-content-wrapper {
    width: 640px;
    height: 360px;
  }

  .fixed-scale-iframe {
    transform: scale(0.5);
  }

  .demo-glow-bg {
    width: 600px;
    height: 400px;
  }
}

@media (min-width: 992px) {
  .browser-content-wrapper {
    width: 896px;
    height: 504px;
  }

  .fixed-scale-iframe {
    transform: scale(0.7);
  }

  .demo-glow-bg {
    width: 900px;
    height: 500px;
  }
}

.demo-instructions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.instruction-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-light-sm);
  border: 1px solid var(--color-border-light);
}

.instruction-pill .material-icons {
  color: var(--color-accent-primary);
  font-size: 18px;
}


/* ------------------------- */
/* 9. HOW IT WORKS (Elegant) */
/* ------------------------- */
.how-it-works-elegant {
  background-color: var(--color-bg-light);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.elegant-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem auto;
}

.elegant-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.elegant-timeline::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background-color: var(--color-border-light);
  border-radius: 2px;
  z-index: 1;
}

.timeline-progress-elegant {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  z-index: 2;
  height: 0;
  transition: height 0.1s ease-out;
}

.elegant-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 200px;
}

.step-number-dot {
  grid-column: 2;
  grid-row: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-bg-secondary-light);
  border: 2px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all var(--transition-smooth);
}

.step-number-dot::before {
  content: attr(data-step);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--color-text-tertiary);
  transition: color var(--transition-smooth);
}

.elegant-step.is-visible .step-number-dot {
  border-color: var(--color-accent-primary);
  transform: scale(1.1);
}

.elegant-step.is-visible .step-number-dot::before {
  color: var(--color-accent-primary);
}

.step-content-elegant {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  transition: all 0.4s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

.elegant-step.is-visible .step-content-elegant {
  opacity: 1;
  transform: translateY(0);
}

.elegant-step--right .step-content-elegant {
  grid-column: 3;
  text-align: left;
}

.elegant-step--left .step-content-elegant {
  grid-column: 1;
  text-align: right;
}

.step-content-elegant:hover {
  background-color: var(--color-bg-secondary-light);
  box-shadow: var(--shadow-light-lg);
  transform: translateY(-5px);
}

.step-category {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.step-title-elegant {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.step-description-elegant {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 380px;
}

.elegant-step--right .step-description-elegant {
  margin-right: auto;
}

.elegant-step--left .step-description-elegant {
  margin-left: auto;
}

/* Timeline Mobile */
@media (max-width: 768px) {

  .elegant-timeline::after,
  .timeline-progress-elegant {
    left: 25px;
    transform: translateX(0);
  }

  .elegant-step {
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
    min-height: auto;
    margin-bottom: 3rem;
  }

  .step-number-dot {
    grid-column: 1;
  }

  .elegant-step--right .step-content-elegant,
  .elegant-step--left .step-content-elegant {
    grid-column: 2;
    text-align: left;
    padding: 0;
  }

  .step-description-elegant {
    margin-left: 0;
    max-width: 100%;
  }

  .step-content-elegant:hover {
    background: none;
    box-shadow: none;
    transform: none;
  }
}


/* ------------------------- */
/* 10. BENEFICIOS            */
/* ------------------------- */
.benefits-elegant {
  background-color: var(--color-bg-light);
  position: relative;
}

.benefits-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(74, 58, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to right, rgba(74, 58, 255, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.8;
  mask-image: radial-gradient(circle at top center, white 0%, transparent 70%);
  z-index: 0;
}

.benefits-elegant .container {
  position: relative;
  z-index: 1;
}

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

.elegant-benefit-card {
  position: relative;
  background-color: var(--color-bg-secondary-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  overflow: hidden;
}

.elegant-benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.elegant-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-light-lg);
}

.elegant-benefit-card:hover::after {
  opacity: 1;
}

.card__icon-elegant {
  font-size: 40px;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform var(--transition-smooth);
}

.elegant-benefit-card:hover .card__icon-elegant {
  transform: scale(1.1);
}

.card__title-elegant {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.card__text-elegant {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}


/* ------------------------- */
/* 11. CAPACIDADES (Dark)    */
/* ------------------------- */
.section--dark-gradient {
  background-color: #111522;
  position: relative;
}

.section--dark-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.6;
  mask-image: radial-gradient(circle at top center, white 10%, transparent 80%);
  z-index: 0;
}

.capabilities-premium .container {
  position: relative;
  z-index: 1;
}

.capabilities-premium__intro {
  text-align: center;
  margin-bottom: 4rem;
}

.capabilities-premium__intro .section-subtitle {
  color: var(--color-text-tertiary);
}

.capabilities-premium__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.premium-capability-card {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  transition: all var(--transition-smooth);
  text-align: left;
}

.premium-capability-card:hover {
  transform: translateY(-8px);
  background-color: #1c202d;
  border-color: var(--color-accent-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-capability-card .material-icons {
  font-size: 40px;
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 15px rgba(74, 58, 255, 0.2);
}

.card__title-dark {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-bg-secondary-light);
  margin-bottom: 0.75rem;
}

.card__description-dark {
  color: var(--color-text-tertiary);
  line-height: 1.7;
  font-size: 1rem;
}


/* ------------------------- */
/* 12. CASOS DE USO          */
/* ------------------------- */
.case-studies.section--light {
  background-color: var(--color-bg-light);
  position: relative;
}

.case-studies.section--light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(74, 58, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to right, rgba(74, 58, 255, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.8;
  mask-image: radial-gradient(circle at top center, white 0%, transparent 70%);
  z-index: 0;
}

.case-studies .container {
  position: relative;
  z-index: 1;
}

.case-study-item {
  position: relative;
  background-color: var(--color-bg-secondary-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  text-align: left;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  overflow: hidden;
  height: 100%;
}

.case-study-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.case-study-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-light-lg);
}

.case-study-item:hover::after {
  opacity: 1;
}

.case-study-item__icon {
  font-size: 36px;
  margin-bottom: 1.25rem;
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform var(--transition-bouncy);
}

.case-study-item:hover .case-study-item__icon {
  transform: scale(1.15) rotate(-8deg);
}

.case-study-item__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.case-study-item__description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
  padding-bottom: 1rem;
}


/* ------------------------- */
/* 13. PRECIOS (Dark Premium)*/
/* ------------------------- */
#planes.pricing-section {
  background: linear-gradient(180deg, #111522 0%, #0a0a0a 100%);
  color: #ffffff;
  position: relative;
}

#planes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at top center, white 0%, transparent 80%);
  z-index: 0;
}

#planes .container {
  position: relative;
  z-index: 1;
}

#planes .section-title,
#planes .section-subtitle {
  color: #ffffff;
}

#planes .section-subtitle {
  color: #a0a8b7;
}

/* Toggle */
#planes .pricing-toggle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

#planes .pricing-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-pill);
  padding: 6px;
  display: flex;
}

#planes .toggle-button {
  color: var(--color-text-medium);
  font-weight: 500;
  border-radius: var(--border-radius-pill);
  background: none;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

#planes .toggle-button.active {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(74, 58, 255, 0.2);
}

#planes .pricing-trial-notice {
  font-size: 0.9rem;
  color: var(--color-text-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-pill);
}

#planes .pricing-trial-notice .material-icons {
  font-size: 18px;
  color: #50e3c2;
}

/* Pricing Cards */
#planes .pricing-card {
  background: linear-gradient(145deg, #1e2230, #111522);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-smooth);
  overflow: visible;
}

#planes .pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-xl);
  border: 2px solid transparent;
  background: linear-gradient(var(--gradient-accent)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

#planes .pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
}

#planes .pricing-card:hover::after {
  opacity: 1;
}

#planes .pricing-card__title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

#planes .pricing-card__price .price {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

#planes .pricing-card__price .period {
  color: #a0a8b7;
}

#planes .pricing-card__description {
  color: var(--color-text-medium);
  min-height: 3.2em;
  margin-bottom: 1.5rem;
}

#planes .pricing-card__features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

#planes .pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-medium);
  margin-bottom: 0.8rem;
}

#planes .pricing-card__features .material-icons {
  font-size: 20px;
  color: var(--color-accent-secondary);
  margin-top: 2px;
}

#planes .button {
  width: 100%;
}

/* Card Destacada */
#planes .pricing-card--highlighted {
  transform: scale(1.05);
  z-index: 2;
}

#planes .pricing-card--highlighted:hover {
  transform: scale(1.1) translateY(-10px);
}

#planes .pricing-card--highlighted::after {
  opacity: 1;
  animation: rotateGradient 4s linear infinite;
}

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

  to {
    transform: rotate(360deg);
  }
}

#planes .pricing-card__badge {
  background: var(--gradient-accent);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

#planes .pricing-details-link {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}


/* ------------------------- */
/* 14. FAQ                   */
/* ------------------------- */
.faq-section.section {
  background-color: var(--color-bg-light);
}

.faq-section.section--dark-secondary {
  background-color: #f0f2f7;
}

/* Opcional si se usa variante */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--color-bg-secondary-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-light-lg);
  padding: clamp(1rem, 4vw, 2rem);
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border-radius: var(--border-radius-md);
  transition: background-color var(--transition-smooth);
}

.faq-question span:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  transition: all var(--transition-smooth);
}

.faq-toggle-icon {
  font-size: 24px;
  color: var(--color-text-tertiary);
  transition: transform var(--transition-smooth), color var(--transition-smooth);
}

.faq-question:hover {
  background-color: var(--color-accent-subtle-bg);
}

.faq-question:hover span:first-child {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.faq-question:hover .faq-toggle-icon {
  color: var(--color-accent-primary);
}

.faq-item.active .faq-question {
  background-color: var(--color-accent-subtle-bg);
}

.faq-item.active .faq-question span:first-child {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--color-accent-primary);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, opacity 0.2s ease-out, padding-top 0.2s ease-out;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}


/* ------------------------- */
/* 15. CTA & FOOTER          */
/* ------------------------- */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #111522 0%, #0a0a0a 100%);
}

.final-cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Esto fuerza al botón a ir al centro */
  text-align: center;
  /* Esto centra el texto del H2 y P */
}

.main-footer {
  background-color: #111522;
  color: #a0a8b7;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter {
  max-width: 600px;
  margin: 0 auto 4rem;
  text-align: center;
}

.footer-newsletter h3 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-newsletter p {
  color: #a0a8b7;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form-group {
  position: relative;
}

.newsletter-form input[type="email"] {
  width: 100%;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-pill);
  padding: 1rem 4.5rem 1rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  transition: border-color var(--transition-smooth), background-color var(--transition-smooth);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 3px rgba(74, 58, 255, 0.3);
}

.newsletter-form button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.newsletter-form button:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(74, 58, 255, 0.4);
}

.footer-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin-bottom: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #a0a8b7;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.footer-col ul li a:hover {
  padding-left: 5px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-col--brand p {
  line-height: 1.7;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 350px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background-color var(--transition-smooth), transform var(--transition-smooth);
}

.social-icons a:hover {
  background-color: var(--color-accent-primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #81899c;
}

/* === Fin del CSS Limpio === */

/* =================================================================== */
/* ===    ESTILOS HERO 2.0 (FLOATING ECOSYSTEM)                    === */
/* =================================================================== */

.hero.section {
  position: relative;
  overflow: hidden;
  /* Aseguramos espacio vertical para los elementos flotantes */
  padding-top: 180px;
  padding-bottom: 140px;
}

/* Contenedor del fondo (Detrás del texto) */
.hero-background-ecosystem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Detrás del contenido principal */
  pointer-events: none;
  /* No bloquea clics */
}

/* --- ELEMENTOS FLOTANTES (CARDS) --- */
.float-element {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px 12px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.float-element:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(74, 58, 255, 0.15);
  border-color: var(--color-accent-primary);
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.float-icon .material-icons {
  font-size: 22px;
}

.float-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.float-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}

.float-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

/* --- COLORES DE ICONOS --- */
.bg-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.bg-calendar {
  background: linear-gradient(135deg, #4a3aff, #7a70ff);
}

.bg-phone {
  background: linear-gradient(135deg, #FF4757, #FF6B81);
}

.bg-api {
  background: linear-gradient(135deg, #FFA502, #FF7F50);
}

/* --- POSICIONAMIENTO RESPONSIVE --- */

/* Escritorio Grande */
@media (min-width: 1200px) {
  .whatsapp-float {
    top: 20%;
    left: 10%;
  }

  .calendar-float {
    top: 18%;
    right: 12%;
  }

  .phone-float {
    bottom: 15%;
    left: 12%;
  }

  .api-float {
    bottom: 20%;
    right: 10%;
  }
}

/* Laptops */
@media (min-width: 992px) and (max-width: 1199px) {
  .whatsapp-float {
    top: 18%;
    left: 2%;
  }

  .calendar-float {
    top: 15%;
    right: 2%;
  }

  .phone-float {
    bottom: 10%;
    left: 5%;
  }

  .api-float {
    bottom: 15%;
    right: 5%;
  }
}

/* Tablets (Simplificar o esconder) */
@media (max-width: 991px) {
  .float-element {
    transform: scale(0.8);
    /* Más pequeños */
    opacity: 0.6;
  }

  .whatsapp-float {
    top: 15%;
    left: -20px;
  }

  .calendar-float {
    top: 12%;
    right: -20px;
  }

  /* Ocultamos los de abajo para dar espacio al scroll */
  .phone-float,
  .api-float {
    display: none;
  }
}

/* Móviles (Esconder para limpieza visual) */
@media (max-width: 768px) {
  .hero-background-ecosystem {
    display: none;
  }

  /* En móvil priorizamos el texto limpio */
}

/* --- ANIMACIONES DE FLOTACIÓN (BOB) --- */
.animate-float-slow {
  animation: floating 6s ease-in-out infinite;
}

.animate-float-mid {
  animation: floating 5s ease-in-out infinite reverse;
}

.animate-float-fast {
  animation: floating 4s ease-in-out infinite 1s;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* --- HERO BADGE (NUEVO) --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 58, 255, 0.08);
  color: var(--color-accent-primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(74, 58, 255, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 58, 255, 0.7);
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 58, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(74, 58, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 58, 255, 0);
  }
}

/* --- TRUST BADGES (NUEVO) --- */
.hero-trust {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-trust .avatars {
  display: flex;
}

.hero-trust .avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}

.hero-trust .avatars img:first-child {
  margin-left: 0;
}

.hero-trust span {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ========================================= */
/* === FIX MÓVIL: ECOSISTEMA VISIBLE === */
/* ========================================= */

@media (max-width: 768px) {

  /* 1. Hacemos visible el contenedor */
  .hero-background-ecosystem {
    display: block !important;
    overflow: hidden;
    /* Evita scroll horizontal si se salen */
  }

  /* 2. Reducimos el tamaño de las tarjetas flotantes */
  .float-element {
    padding: 8px 12px;
    /* Menos relleno */
    gap: 8px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
    /* Más opaco para contraste */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    opacity: 0.9;
    z-index: 0;
    /* Detrás del texto siempre */
  }

  /* Reducimos texto e iconos */
  .float-icon {
    width: 32px;
    height: 32px;
  }

  .float-icon .material-icons,
  .float-icon svg {
    width: 16px;
    height: 16px;
    font-size: 16px;
  }

  .float-title {
    font-size: 0.75rem;
  }

  .float-subtitle {
    display: none;
  }

  /* Ocultamos subtítulo para ahorrar espacio */

  /* 3. POSICIONAMIENTO ESTRATÉGICO EN MÓVIL (Corners) */

  /* WhatsApp: Arriba Izquierda */
  .whatsapp-float {
    top: 12%;
    left: -15px;
    /* Efecto de "asomarse" */
    animation: floating-mobile 4s ease-in-out infinite;
  }

  /* Calendar: Arriba Derecha */
  .calendar-float {
    top: 15%;
    right: -15px;
    flex-direction: row-reverse;
    /* Icono hacia el borde */
    animation: floating-mobile 5s ease-in-out infinite reverse;
  }

  /* Phone: Abajo Izquierda (Cerca de los botones) */
  .phone-float {
    display: flex;
    bottom: 25%;
    left: -10px;
    animation: floating-mobile 6s ease-in-out infinite 1s;
  }

  /* API: Abajo Derecha */
  .api-float {
    display: flex;
    bottom: 20%;
    right: -10px;
    flex-direction: row-reverse;
    animation: floating-mobile 4.5s ease-in-out infinite 0.5s;
  }

  /* Ajustamos el padding del Hero para que los elementos no choquen con el header */
  .hero.section {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

/* Animación suavizada para móvil (menos movimiento para no marear) */
@keyframes floating-mobile {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  /* Movimiento más corto */
  100% {
    transform: translateY(0px);
  }
}

/* =================================================================== */
/* ===    ESTILOS BENEFICIOS (ROI DASHBOARD CARDS)                 === */
/* =================================================================== */

.benefits-elegant__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Base Card */
.roi-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.roi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(74, 58, 255, 0.3);
}

/* Área Visual Superior */
.roi-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Fondos sutiles */
.savings-bg {
  background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
}

.csat-bg {
  background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
}

.leads-bg {
  background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
}

/* Badge Flotante (Stat) */
.floating-stat {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-stat .material-icons {
  font-size: 18px;
  color: var(--color-accent-primary);
}

.floating-stat.success .material-icons {
  color: #f1c40f;
}

/* Estrella amarilla */
.floating-stat.highlight .material-icons {
  color: #9b59b6;
}

/* Rayo morado */

/* --- ANIMACIÓN 1: BARRAS DE COSTOS --- */
.chart-mini {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 80px;
}

.bar {
  width: 24px;
  border-radius: 4px;
  background: #e0e0e0;
  animation: grow-bar 1.5s ease-out forwards;
}

.bar-1 {
  height: 80px;
  background: #ff7675;
  animation-delay: 0.2s;
}

/* Alto costo (antes) */
.bar-2 {
  height: 50px;
  background: #fab1a0;
  animation-delay: 0.4s;
}

.bar-3 {
  height: 20px;
  background: #00b894;
  animation-delay: 0.6s;
}

/* Bajo costo (ahora) */

@keyframes grow-bar {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }

  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* --- ANIMACIÓN 2: ESTRELLAS --- */
.star-rating-visual {
  display: flex;
  gap: 8px;
}

.star {
  font-size: 32px;
  color: #dfe6e9;
  transition: color 0.3s;
}

.roi-card:hover .star.filled {
  color: #f1c40f;
  animation: pop-star 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.star:nth-child(1) {
  animation-delay: 0.1s;
}

.star:nth-child(2) {
  animation-delay: 0.15s;
}

.star:nth-child(3) {
  animation-delay: 0.2s;
}

.star:nth-child(4) {
  animation-delay: 0.25s;
}

.star:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes pop-star {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
    color: #f1c40f;
  }
}

/* --- ANIMACIÓN 3: TARGET (LEADS) --- */
.target-visual {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-center {
  width: 40px;
  height: 40px;
  background: #9b59b6;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(155, 89, 182, 0.4);
}

.target-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(155, 89, 182, 0.3);
  animation: ripple 2s infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.ring-2 {
  width: 70%;
  height: 70%;
  animation-delay: 0.5s;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Contenido de Texto */
.roi-content {
  padding: 2rem;
}

.roi-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.roi-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* =================================================================== */
/* ===    ESTILOS CAPACIDADES (PREMIUM DARK GRID)                  === */
/* =================================================================== */

.capabilities-premium__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Tarjeta Base (Ahora es un enlace <a>) */
.premium-capability-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.03);
  /* Fondo casi transparente */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  text-decoration: none;
  /* Quitar subrayado */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

/* Efecto Glow en Hover */
.premium-capability-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(74, 58, 255, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.premium-capability-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(74, 58, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.premium-capability-card:hover .card-glow {
  opacity: 1;
}

/* Iconos con colores específicos */
.card__icon-wrapper-dark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.card__icon-wrapper-dark .material-icons {
  font-size: 28px;
  color: #fff;
}

/* Variantes de color de icono */
.icon-purple {
  background: linear-gradient(135deg, rgba(74, 58, 255, 0.2), rgba(74, 58, 255, 0.05));
  border: 1px solid rgba(74, 58, 255, 0.2);
}

.icon-blue {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.05));
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.icon-orange {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(230, 126, 34, 0.05));
  border: 1px solid rgba(230, 126, 34, 0.2);
}

.icon-pink {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(233, 30, 99, 0.05));
  border: 1px solid rgba(233, 30, 99, 0.2);
}

.icon-green {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.05));
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.icon-teal {
  background: linear-gradient(135deg, rgba(26, 188, 156, 0.2), rgba(26, 188, 156, 0.05));
  border: 1px solid rgba(26, 188, 156, 0.2);
}

.premium-capability-card:hover .card__icon-wrapper-dark {
  transform: scale(1.1);
}

/* Textos */
.card__title-dark {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.card__description-dark {
  font-size: 0.95rem;
  color: #a0a8b7;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Flecha de "Ver más" */
.card-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #fff;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.premium-capability-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--color-accent-primary);
}

/* Botón Final */
.capabilities-cta {
  display: flex;
  justify-content: center;
}

.button--large {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
}

.button--large:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* =================================================================== */
/* ===    ESTILOS SECCIÓN CASOS DE USO (INDUSTRY CARDS)            === */
/* =================================================================== */

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

/* Tarjeta Base */
.industry-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Hover Effect: Subir y Sombra */
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(74, 58, 255, 0.2);
}

/* Icon Box */
.ind-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.ind-icon-box .material-icons {
  font-size: 28px;
}

.industry-card:hover .ind-icon-box {
  transform: scale(1.1) rotate(-5deg);
}

/* Colores por Industria */
.color-indigo {
  background: #e8eaf6;
  color: #3f51b5;
}

.color-orange {
  background: #fff3e0;
  color: #ff9800;
}

.color-gold {
  background: #fff8e1;
  color: #ffc107;
}

.color-blue {
  background: #e3f2fd;
  color: #2196f3;
}

.color-teal {
  background: #e0f2f1;
  color: #009688;
}

.color-cyan {
  background: #e0f7fa;
  color: #00bcd4;
}

.color-purple {
  background: #f3e5f5;
  color: #9c27b0;
}

.color-red {
  background: #ffebee;
  color: #f44336;
}

/* Contenido */
.ind-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.ind-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  /* Empuja el footer hacia abajo */
}

/* Footer: Link "Ver Solución" */
.ind-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent-primary);
  opacity: 0.8;
  transition: opacity 0.3s;
}

.industry-card:hover .ind-footer {
  opacity: 1;
}

.ind-footer .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.industry-card:hover .ind-footer .arrow {
  transform: translateX(5px);
}

/* Ajuste Mobile */
@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   ESTILOS PREMIUM (LOADER & SUCCESS)
   ========================================= */

/* 1. Spinner de Carga (Circular Progress Premium) */
.premium-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  /* Fondo sutil */
  border-left-color: #ffffff;
  /* Color de progreso */
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  animation: premium-spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes premium-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 2. Animación de Salida del Formulario */
.form-content-fade-out {
  opacity: 0;
  transform: scale(0.98) translateY(5px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* 3. Contenedor del Mensaje de Éxito */
.success-message-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* Animación de entrada suave */
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Icono de Check con Gradiente y Sombra */
.success-icon-circle {
  width: 48px;
  height: 48px;
  /* Gradiente moderno verde */
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  /* Sombra suave ("Glow") */
  box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.4), 0 8px 10px -6px rgba(34, 197, 94, 0.2);
}

.success-icon-circle .material-icons {
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.success-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.success-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  /* Texto secundario más elegante */
  line-height: 1.5;
  margin: 0;
}

/* Keyframes para la entrada suave */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}