
/* =========================================================
   1. VARIABLES GENERALES
========================================================= */
:root {
  --container: 1180px;
  --text-dark: #17142f;
  --transition: all 0.3s ease;
  --transition-soft: all 0.25s ease;
  --accent-blue: #20c7f4;
}
/* =========================================================
   2. RESET GENERAL
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}



/* =========================================================
   5. HEADER / MENÚ PRINCIPAL
   - Más compacto para que no ocupe mucho espacio
========================================================= */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.nav-wrap {
  max-width: 1240px;
  width: calc(100% - 96px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 1.2rem;
}
.logo {
  justify-self: start;
}

.main-menu {
  justify-self: center;
}

.nav-btns {
  justify-self: end;
}

.logo img {
  height: 52px;
  width: auto;
}

.main-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: #0f2238;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition-soft);
}

.nav-links > li > a:hover {
  color: var(--accent-blue);
}

.nav-links > li > a span {
  font-size: 0.72rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 270px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-soft);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a,
.dropdown-title {
  display: block;
  padding: 0.82rem 1rem;
}

.dropdown-menu li a {
  color: #13263a;
  font-weight: 600;
}

.dropdown-menu li a:hover {
  background: #f3f9fd;
  color: var(--accent-blue);
}

.dropdown-title {
  font-size: 0.74rem;
  font-weight: 800;
  color: #587087;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid #edf3f8;
  margin-top: 0.35rem;
}

.dropdown-title:first-child {
  border-top: 0;
  margin-top: 0;
}

/* ===== DROPDOWN ===== */

.dropdown{
  position: relative;
}

.dropdown-menu{
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 270px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
  padding: 0.75rem 0;

  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
}


.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li{
  list-style: none;
}

.dropdown-menu a{
  display: block;
  padding: 12px 20px;
  color: #13263a;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.dropdown-menu a:hover{
  background: #f3f9fd;
  color: #6a1fd1;
}


/* =========================================================
   6. BOTONES GENERALES
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, #5b20cf, #9d4edd);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(91, 32, 207, 0.26);
}

.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
}

.header-btn {
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.hero-actions .btn,
.cta-actions .btn {
  padding: 1rem 1.8rem;
  border-radius: 18px;
}

/* =========================================================
   RESPONSIVE GENERAL
========================================================= */


@media (max-width: 860px) {
  .navbar {
    position: sticky;
    padding: 12px 18px;
  }

  .nav-wrap {
    flex-direction: column;
    gap: 0.9rem;
  }

  .logo img {
    height: 44px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1rem;
  }

  .nav-btns {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* =========================================================
   22. RESPONSIVE MÓVIL
========================================================= */
@media (max-width: 860px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-wrap {
    flex-direction: column;
    gap: 0.8rem;
  }

  .brand img {
    height: 40px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 60px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero-actions,
  .cta-actions {
    justify-content: center;
  }
}

/* =========================================================
   MODO PRESENTACIÓN PRO
   - Ajusta el scroll para que el header fijo no tape contenido
========================================================= */
.presentation-mode .snap-section {
  scroll-margin-top: 90px;
}

@media (max-width: 860px) {
  .presentation-mode .snap-section {
    scroll-margin-top: 120px;
  }
}


.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  /* Esto asegura que las tarjetas se vean bien */
}

/* Estilo para las flechas (opcional, para que combinen con tu azul) */
.swiper-button-next, .swiper-button-prev {
  color: #007bff; 
}

.stat-card,
.benefit-card,
.ideal-card,
.trust-card,
.image-panel,
.feature-row {
  transition: all 0.35s ease;
}

.stat-card:hover,
.benefit-card:hover,
.ideal-card:hover,
.image-panel:hover,
.feature-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(91, 32, 207, 0.16);
}

.stat-card,
.benefit-card,
.ideal-card {
  border: 1px solid rgba(106, 31, 209, 0.12);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

/* =========================================================
   ISSABEL - MORADO TECH + AEL BLUE
========================================================= */


.issabel-pro-badge {
  background: rgba(106,31,209,.1);
  color: var(--issabel-purple);
}

/* =========================================================
   ISSABEL AEL - VARIABLES DE COLOR
========================================================= */

:root {
  --issabel-dark: #10061f;
  --issabel-navy: #061525;
  --issabel-purple: #6a1fd1;
  --issabel-violet: #9d4edd;
  --issabel-cyan: #20c7f4;
  --issabel-blue: #007bbd;
  --issabel-text: #17142f;
  --issabel-muted: #667085;
  --issabel-soft: #f7f3ff;
  --issabel-line: rgba(106, 31, 209, 0.14);
}

.issabel-ael-badge {
  background: rgba(106, 31, 209, 0.1);
  color: var(--issabel-purple);
}


/* =========================================================
   PLATAFORMA ISSABEL - SISTEMA INTELIGENTE
========================================================= */

.issabel-platform-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(106, 31, 209, 0.16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(32, 199, 244, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 48%, #f2edff 100%);
}

.issabel-platform-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(106, 31, 209, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 31, 209, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  pointer-events: none;
}

.issabel-platform-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(32, 199, 244, 0.16) 48%, transparent 72%);
  transform: translateX(-45%);
  animation: platformLightMove 7s ease-in-out infinite;
}

.issabel-platform-wrap {
  position: relative;
  z-index: 2;
}

.issabel-platform-head {
  max-width: 860px;
  margin: 0 auto 3rem;
  text-align: center;
}

.issabel-platform-badge {
  background: linear-gradient(135deg, #6a1fd1, #20c7f4);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 14px 34px rgba(106, 31, 209, 0.24);
}

.issabel-platform-head h2 {
  margin: 1rem auto 0;
  color: #10061f;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.issabel-platform-head p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: #4d4563;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
}

/* GRID PRINCIPAL */
.issabel-platform-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

/* PANEL INFORMATIVO */
.issabel-info-panel {
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(106, 31, 209, 0.14);
  box-shadow: 0 24px 70px rgba(42, 20, 84, 0.1);
  backdrop-filter: blur(16px);
}

.info-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #6a1fd1;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-kicker i {
  color: #20c7f4;
}

.issabel-info-panel h3 {
  margin: 1rem 0 0;
  color: #10061f;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.15;
  font-weight: 900;
}

.issabel-info-panel p {
  margin: 0.85rem 0 0;
  color: #514865;
  line-height: 1.75;
  font-size: 0.95rem;
  font-weight: 700;
}

.issabel-metric-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.issabel-metric-list div {
  position: relative;
  padding: 0.9rem 0.95rem 0.9rem 1.1rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(106, 31, 209, 0.08), rgba(32, 199, 244, 0.07));
  border: 1px solid rgba(106, 31, 209, 0.1);
}

.issabel-metric-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6a1fd1, #20c7f4);
}

.issabel-metric-list strong {
  display: block;
  color: #16092d;
  font-size: 0.95rem;
  font-weight: 900;
}

.issabel-metric-list span {
  display: block;
  margin-top: 0.2rem;
  color: #5b536e;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 700;
}

/* ESCENARIO VISUAL */
.issabel-visual-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.issabel-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(106, 31, 209, 0.16);
  pointer-events: none;
}

.orbit-one {
  width: min(760px, 96%);
  height: 350px;
  box-shadow:
    0 0 0 38px rgba(106, 31, 209, 0.035),
    inset 0 0 50px rgba(32, 199, 244, 0.045);
  animation: orbitPulse 4.5s ease-in-out infinite;
}

.orbit-two {
  width: min(620px, 82%);
  height: 270px;
  border-color: rgba(32, 199, 244, 0.22);
  transform: rotate(-8deg);
  animation: orbitPulse 5.5s ease-in-out infinite reverse;
}

.issabel-visual-stage::after {
  content: "";
  position: absolute;
  width: min(840px, 96%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 199, 244, 0.9), transparent);
  animation: flowLine 3.8s ease-in-out infinite;
}

/* DASHBOARD */
.flow-dashboard {
  position: relative;
  z-index: 4;
  width: min(650px, 84%);
  padding: 12px;
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(32, 199, 244, 0.2), transparent 36%),
    linear-gradient(135deg, #10061f, #241047 58%, #061525);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 34px 90px rgba(16, 6, 31, 0.28),
    0 0 0 1px rgba(106, 31, 209, 0.08);
}

.flow-dashboard-top {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem 0.4rem 0.6rem;
}

.flow-dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #20c7f4;
  box-shadow: 0 0 14px rgba(32, 199, 244, 0.6);
}

.flow-dashboard-top span:nth-child(2) {
  background: #9d4edd;
}

.flow-dashboard-top span:nth-child(3) {
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-label {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 900;
}

.dashboard-label i {
  color: #20c7f4;
}

.flow-dashboard img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-scan {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #20c7f4, transparent);
  box-shadow: 0 0 20px rgba(32, 199, 244, 0.78);
  animation: scanMove 3s ease-in-out infinite;
  pointer-events: none;
}

/* NODOS */
.flow-node {
  position: absolute;
  z-index: 5;
  min-width: 132px;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
  background: rgba(16, 6, 31, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  font-size: 0.88rem;
  font-weight: 900;
  animation: floatNode 4s ease-in-out infinite;
}

.flow-node i {
  color: #20c7f4;
  font-size: 1rem;
}

.node-call {
  top: 52px;
  left: 56px;
}

.node-queue {
  top: 92px;
  right: 36px;
  animation-delay: 0.7s;
}

.node-report {
  bottom: 94px;
  left: 28px;
  animation-delay: 1.2s;
}

.node-security {
  bottom: 58px;
  right: 78px;
  animation-delay: 1.7s;
}

/* CAPACIDADES */
.issabel-capabilities {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.issabel-capabilities div {
  padding: 1.05rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(106, 31, 209, 0.14);
  box-shadow: 0 16px 38px rgba(91, 32, 207, 0.08);
}

.issabel-capabilities i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.7rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #6a1fd1, #20c7f4);
}

.issabel-capabilities strong {
  display: block;
  color: #120727;
  font-size: 0.98rem;
  font-weight: 900;
}

.issabel-capabilities span {
  display: block;
  margin-top: 0.35rem;
  color: #544b68;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 700;
}

/* ANIMACIONES */
@keyframes platformLightMove {
  0%, 100% {
    transform: translateX(-45%);
    opacity: 0.15;
  }

  50% {
    transform: translateX(35%);
    opacity: 0.45;
  }
}

@keyframes orbitPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes flowLine {
  0%, 100% {
    opacity: 0.22;
    transform: translateX(-5%);
  }

  50% {
    opacity: 1;
    transform: translateX(5%);
  }
}

@keyframes scanMove {
  0%, 100% {
    transform: translateY(-68px);
    opacity: 0.35;
  }

  50% {
    transform: translateY(68px);
    opacity: 1;
  }
}

@keyframes floatNode {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* DARK MODE */
body.dark-mode .issabel-platform-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(106, 31, 209, 0.2), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(32, 199, 244, 0.14), transparent 32%),
    linear-gradient(180deg, #07111b 0%, #0b1724 100%);
}

body.dark-mode .issabel-platform-head h2,
body.dark-mode .issabel-info-panel h3,
body.dark-mode .issabel-metric-list strong,
body.dark-mode .issabel-capabilities strong {
  color: #ffffff;
}

body.dark-mode .issabel-platform-head p,
body.dark-mode .issabel-info-panel p,
body.dark-mode .issabel-metric-list span,
body.dark-mode .issabel-capabilities span {
  color: rgba(255, 255, 255, 0.78);
}

body.dark-mode .issabel-info-panel,
body.dark-mode .issabel-capabilities div {
  background: rgba(13, 27, 42, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .issabel-platform-grid {
    grid-template-columns: 1fr;
  }

  .issabel-info-panel {
    max-width: 760px;
    margin: 0 auto;
  }

  .issabel-capabilities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .issabel-platform-section {
    padding: 76px 0;
  }

  .issabel-platform-head {
    margin-bottom: 2rem;
  }

  .issabel-visual-stage {
    min-height: auto;
    padding: 1rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .flow-dashboard {
    grid-column: 1 / -1;
    order: -1;
    width: 100%;
  }

  .flow-node {
    position: static;
    justify-content: center;
    animation: none;
    width: 100%;
  }

  .issabel-orbit,
  .issabel-visual-stage::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .issabel-platform-head h2 {
    font-size: 2rem;
  }

  .issabel-platform-head p {
    font-size: 0.92rem;
  }

  .issabel-capabilities {
    grid-template-columns: 1fr;
  }

  .issabel-visual-stage {
    grid-template-columns: 1fr;
  }

  .dashboard-label {
    display: none;
  }
}


/* =========================================================
   BENEFICIOS - IMPACTO EMPRESARIAL
========================================================= */

.issabel-benefits-pro {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(106, 31, 209, 0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(32, 199, 244, 0.15), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f8ff 52%, #f2edff 100%);
}

.benefits-tech-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(106, 31, 209, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 31, 209, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  pointer-events: none;
}

.benefits-tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(32, 199, 244, 0.18) 48%, transparent 72%);
  animation: benefitsBeam 7s ease-in-out infinite;
}

.benefits-pro-wrap {
  position: relative;
  z-index: 2;
}

.benefits-pro-head {
  max-width: 780px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.benefits-pro-head h2 {
  margin: 1rem auto 0;
  color: #10061f;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.benefits-pro-head p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: #514865;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
}

/* CARDS */
.benefits-pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-pro-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 1.35rem;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72));
  border: 1px solid rgba(106, 31, 209, 0.14);
  box-shadow: 0 20px 52px rgba(91, 32, 207, 0.1);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(32, 199, 244, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(106, 31, 209, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.benefit-pro-card::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.15rem;
  height: 2px;
  background: linear-gradient(90deg, #6a1fd1, #20c7f4, transparent);
  transform: scaleX(0.28);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 0.35s ease;
}

.benefit-pro-card:hover {
  transform: translateY(-10px);
  border-color: rgba(32, 199, 244, 0.45);
  box-shadow: 0 30px 72px rgba(91, 32, 207, 0.17);
}

.benefit-pro-card:hover::before {
  opacity: 1;
}

.benefit-pro-card:hover::after {
  transform: scaleX(1);
}

.benefit-pro-card i {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--issabel-purple), var(--issabel-cyan));
  box-shadow: 0 14px 32px rgba(106, 31, 209, 0.26);
  animation: iconFloat 4s ease-in-out infinite;
}

.benefit-pro-card:nth-child(2) i {
  animation-delay: 0.4s;
}

.benefit-pro-card:nth-child(3) i {
  animation-delay: 0.8s;
}

.benefit-pro-card:nth-child(4) i {
  animation-delay: 1.2s;
}

.benefit-pro-card h3,
.benefit-pro-card p {
  position: relative;
  z-index: 2;
}

.benefit-pro-card h3 {
  margin: 1.15rem 0 0.45rem;
  color: #10061f;
  font-size: 1.25rem;
  font-weight: 900;
}

.benefit-pro-card p {
  margin: 0;
  color: #574f68;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 700;
}

/* ANIMACIONES */
@keyframes benefitsBeam {
  0%, 100% {
    transform: translateX(-45%);
    opacity: 0.16;
  }

  50% {
    transform: translateX(35%);
    opacity: 0.46;
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* DARK MODE */
body.dark-mode .issabel-benefits-pro {
  background:
    radial-gradient(circle at 15% 18%, rgba(106, 31, 209, 0.22), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(32, 199, 244, 0.14), transparent 32%),
    linear-gradient(180deg, #07111b 0%, #0b1724 100%);
}

body.dark-mode .benefits-pro-head h2,
body.dark-mode .benefit-pro-card h3 {
  color: #ffffff;
}

body.dark-mode .benefits-pro-head p,
body.dark-mode .benefit-pro-card p {
  color: rgba(255, 255, 255, 0.76);
}

body.dark-mode .benefit-pro-card {
  background: rgba(13, 27, 42, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .benefits-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .issabel-benefits-pro {
    padding: 76px 0;
  }

  .benefits-pro-head h2 {
    font-size: 2rem;
  }

  .benefits-pro-grid {
    grid-template-columns: 1fr;
  }

  .benefit-pro-card {
    min-height: auto;
  }
}
/* =========================================================
   FUNCIONALIDADES Y PROCESO
========================================================= */

.issabel-ael-split {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.issabel-ael-feature-list {
  display: grid;
  gap: .85rem;
  margin-top: 1.35rem;
}

.issabel-ael-feature-list div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--issabel-line);
}

.issabel-ael-feature-list i {
  flex: 0 0 54px;
}

.issabel-ael-feature-list span {
  color: var(--issabel-text);
  font-weight: 800;
}

.issabel-ael-dark-panel {
  display: grid;
  gap: .9rem;
  padding: 1.25rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(32,199,244,.18), transparent 30%),
    linear-gradient(135deg, #10061f, #25104a 58%, #061525);
  box-shadow: 0 28px 75px rgba(16,6,31,.24);
}

.issabel-ael-dark-panel div {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
}

.issabel-ael-dark-panel strong {
  display: block;
  color: var(--issabel-cyan);
  font-size: 1.45rem;
}

.issabel-ael-dark-panel span {
  color: rgba(255,255,255,.8);
  font-weight: 700;
}


/* =========================================================
   SERVICIO AEL GROUP - CON IMAGEN / MOCKUP
========================================================= */

.ael-service-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(106, 31, 209, 0.35), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(32, 199, 244, 0.22), transparent 34%),
    linear-gradient(135deg, #10061f 0%, #25104a 55%, #061525 100%);
}

.ael-service-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  pointer-events: none;
}

.ael-service-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(32,199,244,0.18) 48%, transparent 72%);
  animation: serviceBeam 7s ease-in-out infinite;
}

.ael-service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

/* VISUAL */
.ael-service-visual {
  display: grid;
  gap: 1rem;
}

.service-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 90px rgba(0,0,0,0.32);
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.08);
}

.service-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(32,199,244,0.18), transparent 30%),
    linear-gradient(180deg, rgba(16,6,31,0.05), rgba(16,6,31,0.55));
  pointer-events: none;
}

.service-live-badge {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(16,6,31,0.76);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 900;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #20c7f4;
  box-shadow: 0 0 0 rgba(32,199,244,0.45);
  animation: servicePulse 2s ease-out infinite;
}

.service-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 170px;
  padding: 0.9rem;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(16,6,31,0.82);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.25);
  animation: nodeFloat 4s ease-in-out infinite;
}

.service-floating-card i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--issabel-purple), var(--issabel-cyan));
}

.service-floating-card strong,
.service-floating-card span {
  display: block;
}

.service-floating-card strong {
  font-size: 0.94rem;
  font-weight: 900;
}

.service-floating-card span {
  margin-top: 0.12rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.card-alerts {
  right: 1.2rem;
  top: 32%;
}

.card-backup {
  left: 1.2rem;
  bottom: 1.2rem;
  animation-delay: 0.8s;
}

.service-scan-line {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #20c7f4, transparent);
  box-shadow: 0 0 22px rgba(32,199,244,0.8);
  animation: serviceScan 3.2s ease-in-out infinite;
}

/* MÉTRICAS */
.service-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.service-metrics div {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 1rem;
  border-radius: 12px;
  display: grid;
  align-content: center;
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.12);
}

.service-metrics div::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #6a1fd1, #20c7f4);
  animation: metricLine 3s ease-in-out infinite;
}

.service-metrics strong {
  color: #20c7f4;
  font-size: 1.7rem;
  font-weight: 900;
}

.service-metrics span {
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

/* COPY */
.ael-service-copy h2 {
  margin: 1rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.07;
  font-weight: 900;
}

.ael-service-copy p {
  max-width: 620px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
}

.service-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.service-checks div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 62px;
  padding: 0.85rem;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 850;
}

.service-checks i {
  color: #20c7f4;
}

/* ANIMACIONES */
@keyframes serviceScan {
  0%, 100% {
    transform: translateY(-120px);
    opacity: 0.25;
  }

  50% {
    transform: translateY(120px);
    opacity: 1;
  }
}

@keyframes serviceBeam {
  0%, 100% {
    transform: translateX(-46%);
    opacity: 0.18;
  }

  50% {
    transform: translateX(36%);
    opacity: 0.42;
  }
}

@keyframes servicePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32,199,244,0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(32,199,244,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(32,199,244,0);
  }
}

@keyframes nodeFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes metricLine {
  0%, 100% {
    transform: translateX(-45%);
    opacity: 0.35;
  }

  50% {
    transform: translateX(45%);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .ael-service-grid {
    grid-template-columns: 1fr;
  }

  .ael-service-copy {
    text-align: center;
  }

  .ael-service-copy p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  .ael-service-section {
    padding: 76px 0;
  }

  .service-image-wrap,
  .service-image-wrap img {
    min-height: 310px;
  }

  .service-metrics,
  .service-checks {
    grid-template-columns: 1fr;
  }

  .service-floating-card {
    min-width: 145px;
    padding: 0.75rem;
  }

  .card-alerts {
    right: 0.7rem;
  }

  .card-backup {
    left: 0.7rem;
  }
}

/* =========================================================
   ANIMACIONES
========================================================= */

@keyframes issabelPulse {
  0%, 100% {
    opacity: .7;
    transform: scale(.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes issabelFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {
  .issabel-ael-hero-grid,
  .issabel-ael-platform,
  .issabel-ael-split {
    grid-template-columns: 1fr;
  }

  .issabel-ael-cards,
  .issabel-ael-industries {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 620px) {
  .issabel-ael-hero {
    min-height: auto;
  }

  .issabel-ael-hero-grid {
    min-height: auto;
    padding-top: 135px;
  }

  .issabel-ael-cards,
  .issabel-ael-industries,
  .issabel-ael-service-list,
  .monitor-grid {
    grid-template-columns: 1fr;
  }

  .issabel-ael-float {
    display: none;
  }

}

/* =========================================================
   BOTONES ISSABEL - AJUSTE PREMIUM
========================================================= */

.btn-pill {
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
}

.issabel-ael-actions .btn {
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 16px;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.issabel-ael-actions .btn-primary {
  background: linear-gradient(135deg, #6a1fd1, #20c7f4);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(106, 31, 209, 0.28);
}

.issabel-ael-actions .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
}

.issabel-ael-cta .btn-secondary {
  background: rgba(255,255,255,0.08);
}

.nav-btns .btn {
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
}

/* =========================================================
   FOOTER - AEL GROUP PREMIUM TECH + WHATSAPP
========================================================= */
.footer-ael-tech {
  position: relative;
  overflow: hidden;
  padding: 82px 24px 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 12%, rgba(106, 31, 209, 0.24), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(32, 199, 244, 0.16), transparent 28%),
    linear-gradient(135deg, #10061f 0%, #25104a 55%, #061525 100%);
}

.footer-ael-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.footer-ael-tech::before,
.footer-ael-glow {
  display: none !important;
}

.footer-ael-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.footer-ael-brand {
  max-width: none;
}

.footer-ael-logo {
  width: 210px;
  margin-bottom: 1.2rem;
}

.footer-ael-brand p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

.footer-ael-social {
  margin-top: 1.45rem;
  display: flex;
  gap: 0.8rem;
}

.footer-ael-social a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s ease;
}

.footer-ael-social a:hover {
  background: linear-gradient(135deg, #6a1fd1, #20c7f4);
  box-shadow: 0 0 22px rgba(106, 31, 209, 0.45);
}

.footer-ael-column h4 {
  position: relative;
  margin: 0 0 1.3rem;
  color: #ffffff;
  font-size: 1.05rem;
}

.footer-ael-column h4::after {
  background: linear-gradient(90deg, #6a1fd1, #20c7f4);
}

.footer-ael-links {
  display: grid;
  gap: 0.9rem;
}

.footer-ael-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-ael-links a i {
  color: #20c7f4;
}

.footer-ael-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-ael-contact {
  display: grid;
  gap: 1.1rem;
}

.footer-ael-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.footer-ael-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #6a1fd1, #20c7f4);
  box-shadow: 0 0 24px rgba(106, 31, 209, 0.34);
}

.footer-ael-contact strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #ffffff;
  font-size: 0.94rem;
}

.footer-ael-contact a,
.footer-ael-contact span {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-ael-contact a:hover {
  color: #20c7f4;
}




.footer-ael-bottom {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 3.2rem auto 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.09);
  text-align: center;
}

.footer-ael-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

.footer-ael-tech::before {
  display: none !important;
}

.footer-ael-links a:hover,
.footer-ael-contact a:hover,
.footer-ael-support a:hover {
  color: #d9bcff;
}

.footer-ael-glow {
  display: none !important;
}

.footer-ael-support {
  display: grid;
  gap: 1rem;
}

.footer-ael-support li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-ael-support i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(106, 31, 209, 0.18);
  border: 1px solid rgba(32, 199, 244, 0.22);
  font-size: 0.95rem;
}

.footer-ael-support strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #ffffff;
  font-size: 0.92rem;
}

.footer-ael-support a,
.footer-ael-support span {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-ael-support a:hover {
  color: #20c7f4;
}

.footer-ael-column,
.footer-ael-brand {
  min-width: 0;
}

.footer-ael-contact a,
.footer-ael-contact span,
.footer-ael-support a,
.footer-ael-support span,
.footer-ael-brand p {
  overflow-wrap: anywhere;
  word-break: normal;
}
/* =========================================================
   WHATSAPP FLOAT PREMIUM
========================================================= */

.whatsapp-ael-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;

  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.55rem;
  border-radius: 999px;

  background:
    linear-gradient(135deg, #18c964, #25d366);

  color: #ffffff;
  text-decoration: none;

  box-shadow:
    0 16px 35px rgba(37, 211, 102, 0.35),
    0 0 0 1px rgba(255,255,255,0.16);

  transition: 0.35s ease;
}

.whatsapp-ael-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.18);
  opacity: 0;
  transform: scale(0.92);
  transition: 0.35s ease;
  z-index: -1;
}

.whatsapp-ael-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;

  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;

  transition: 0.35s ease;
}

.whatsapp-ael-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);

  font-size: 1.65rem;
  color: #ffffff;
}

.whatsapp-ael-float:hover {
  transform: translateY(-5px);
  box-shadow:
    0 22px 45px rgba(37, 211, 102, 0.44),
    0 0 24px rgba(37, 211, 102, 0.42);
}

.whatsapp-ael-float:hover::before {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-ael-float:hover .whatsapp-ael-text {
  max-width: 150px;
  opacity: 1;
  padding-left: 0.35rem;
}

/* DARK MODE */
body.dark-mode .footer-ael-tech {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 198, 255, 0.13), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(0, 123, 189, 0.16), transparent 28%),
    linear-gradient(135deg, #020b13 0%, #061525 52%, #020b13 100%);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-ael-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-ael-brand {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .footer-ael-tech {
    padding: 68px 20px 26px;
  }

  .footer-ael-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-ael-logo {
    width: 180px;
  }

  .footer-ael-gallery img {
    height: 86px;
  }

  .whatsapp-ael-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-ael-text {
    display: none;
  }

  .whatsapp-ael-icon {
    width: 52px;
    height: 52px;
  }
}

/* =========================================================
   HERO ISSABEL - CENTRADO PREMIUM
========================================================= */

.issabel-ael-hero {
   position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #10061f;
  display: flex;
  align-items: center;
}

.issabel-ael-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.issabel-ael-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 30%, rgba(32, 199, 244, 0.12), transparent 34%),
    radial-gradient(circle at 50% 72%, rgba(157, 78, 221, 0.14), transparent 38%),
    linear-gradient(
      180deg,
      rgba(16, 6, 31, 0.42) 0%,
      rgba(16, 6, 31, 0.50) 55%,
      rgba(16, 6, 31, 0.68) 100%
    );
}

.issabel-ael-hero-grid {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 140px 24px 90px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.issabel-ael-copy {
  max-width: 850px;
  margin: 0 auto;
}

.issabel-ael-copy h1 {
  max-width: 850px;
  margin: 0.9rem auto 1rem;
  color: #ffffff;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

.issabel-ael-copy p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.75;
}

.issabel-ael-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background:  rgba(106,31,209,.1);
  color: #d9bcff;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
}

.issabel-ael-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.issabel-ael-actions .btn {
  min-height: 52px;
  padding: 1rem 1.7rem;
  border-radius: 18px;
  font-size: 0.95rem;
}

/* Si todavía existe la tarjeta visual, la ocultamos en este hero centrado */
.issabel-ael-visual {
  display: none;
}

/* =========================================================
   RESPONSIVE HERO ISSABEL CENTRADO
========================================================= */

@media (max-width: 760px) {
  .issabel-ael-hero {
    min-height: auto;
  }

  .issabel-ael-hero-grid {
    min-height: auto;
    width: min(100%, calc(100% - 40px));
    padding: 115px 0 75px;
  }

  .issabel-ael-copy h1 {
    font-size: 2.25rem;
  }

  .issabel-ael-copy p {
    font-size: 0.95rem;
  }

  .issabel-ael-actions {
    flex-direction: column;
  }

  .issabel-ael-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   HEADER MÁS FINO
========================================================= */

.navbar {
  padding: 8px 24px;
}

.logo img {
  height: 42px;
}

.nav-links {
  gap: 1.35rem;
}

.nav-links > li > a {
  font-size: 0.86rem;
}

.nav-btns .btn {
  padding: 0.66rem 1.05rem;
  font-size: 0.86rem;
}

/* =========================================================
   RESPONSIVE AJUSTADO
========================================================= */

@media (max-width: 980px) {
  .issabel-ael-hero-grid {
    width: min(100%, calc(100% - 44px));
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 92px;
    padding-bottom: 45px;
  }



  .issabel-ael-actions {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .issabel-ael-hero-grid {
    width: min(100%, calc(100% - 32px));
    padding-top: 78px;
  }

  .issabel-ael-copy h1 {
    font-size: 1.85rem;
  }

  .issabel-ael-tech-card {
    display: none;
  }


}

/* =========================================================
   ISSABEL - MISMO TAMAÑO VISUAL QUE EL INDEX
========================================================= */

:root {
  --container: 1240px;
  --text-dark: #102033;
  --transition: all 0.35s ease;
  --transition-soft: all 0.35s ease;
  --accent-blue: #007bbd;
}

/* HEADER IGUAL AL INDEX */
.navbar {
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  z-index: 999;

}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
}

.logo img {
  height: 52px;
}

.nav-links {
  gap: 1.7rem;
}

.nav-links > li > a {
  font-size: 0.95rem;
}

.nav-btns .btn {
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  border-radius: 999px;
}


/* BOTONES IGUAL AL INDEX */
.issabel-ael-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.issabel-ael-actions .btn {
  min-height: auto;
  padding: 1rem 1.7rem;
  border-radius: 18px;
  font-size: 0.95rem;
}


/* TARJETA VISUAL DEL LADO DERECHO */

.issabel-ael-tech-card {
  width: 100%;
  max-width: 380px;
  padding: 1.4rem;
  border-radius: 28px;
}

.issabel-ael-tech-card h3 {
  font-size: 1.35rem;
}




/* RESPONSIVE IGUAL AL INDEX */
@media (max-width: 980px) {
  .issabel-ael-hero {
    min-height: auto;
  }

  .issabel-ael-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 130px 24px 70px;
  }

 
}

@media (max-width: 760px) {
  .navbar {
    position: sticky;
  }

  .issabel-ael-hero-grid {
    padding: 120px 20px 80px;
  }

  .issabel-ael-copy h1 {
    font-size: 2.2rem;
  }

  .issabel-ael-actions {
    flex-direction: column;
  }

  .issabel-ael-actions .btn {
    width: 100%;
  }


  .issabel-ael-tech-card {
    display: none;
  }
}

/* =========================================================
   MODO OSCURO - BOTÓN HEADER
========================================================= */

.nav-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #6a1fd1, #20c7f4);
  color: #ffffff;
  font-size: 1rem;

  box-shadow: 0 0 14px rgba(32, 199, 244, 0.42);
  transition: 0.35s ease;
}

.theme-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 22px rgba(32, 199, 244, 0.7);
}

/* =========================================================
   MODO OSCURO - ISSABEL
========================================================= */

body.dark-mode {
  background: #07111b;
  color: #ffffff;
}

body.dark-mode .navbar {
  background: rgba(7, 17, 27, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

body.dark-mode .nav-links > li > a {
  color: #ffffff;
}

body.dark-mode .dropdown-menu {
  background: #0d1b2a;
  border: 1px solid rgba(255,255,255,0.08);
}

body.dark-mode .dropdown-menu a,
body.dark-mode .dropdown-title {
  color: rgba(255,255,255,0.82);
}

body.dark-mode .dropdown-menu a:hover {
  background: rgba(32,199,244,0.1);
  color: #20c7f4;
}

body.dark-mode .issabel-ael-section,
body.dark-mode .issabel-ael-soft,
body.dark-mode .issabel-ael-cta {
  background: #07111b;
}


body.dark-mode .issabel-ael-cards h3,
body.dark-mode .issabel-ael-industries span {
  color: #ffffff;
}


body.dark-mode .issabel-ael-cards p {
  color: rgba(255,255,255,0.72);
}

body.dark-mode .issabel-ael-cards article,
body.dark-mode .issabel-ael-service-list div,
body.dark-mode .issabel-ael-feature-list div,
body.dark-mode .issabel-ael-industries div,
body.dark-mode .issabel-ael-platform-visual {
  background: #0d1b2a;
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .issabel-ael-service-list div,
body.dark-mode .issabel-ael-feature-list span {
  color: #ffffff;
}



/* =========================================================
   FIX GLOBAL ISSABEL - CONTRASTE Y TÍTULOS PREMIUM
========================================================= */

/* Badges generales */
.issabel-ael-badge,
.issabel-platform-copy .issabel-ael-badge {
  background: linear-gradient(135deg, #6a1fd1, #20c7f4);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 12px 28px rgba(106, 31, 209, 0.22);
}

/* Títulos principales de secciones */

.issabel-platform-copy h2{
  color: #10061f;
  font-weight: 800;
  letter-spacing: -0.6px;
  text-shadow: 0 10px 28px rgba(106, 31, 209, 0.08);
}

/* Párrafos generales */

.issabel-platform-copy p{
  color: #4d4568;
  font-weight: 500;
}

/* =========================================================
   BENEFICIOS - IMPACTO EMPRESARIAL PRO
========================================================= */

.issabel-benefits-pro {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(106, 31, 209, 0.16), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(32, 199, 244, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 48%, #f2edff 100%);
}

.benefits-tech-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(106, 31, 209, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 31, 209, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 84%, transparent 100%);
  pointer-events: none;
}

.benefits-tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(32, 199, 244, 0.18) 48%, transparent 72%);
  animation: benefitsBeam 7s ease-in-out infinite;
}

.benefits-pro-wrap {
  position: relative;
  z-index: 2;
}

.benefits-pro-head {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.benefits-pro-head h2 {
  margin: 1rem auto 0;
  color: #10061f;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.benefits-pro-head p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: #514865;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
}

/* LINEA DE FLUJO */
.benefits-flow-line {
  position: relative;
  width: min(760px, 92%);
  height: 2px;
  margin: 0 auto 1.7rem;
  background: linear-gradient(90deg, transparent, rgba(106,31,209,0.22), rgba(32,199,244,0.4), transparent);
  overflow: hidden;
}

.benefits-flow-line span {
  position: absolute;
  top: 0;
  left: -20%;
  width: 22%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #20c7f4, transparent);
  box-shadow: 0 0 18px rgba(32,199,244,0.8);
  animation: benefitsFlow 3.2s ease-in-out infinite;
}

/* CARDS */
.benefits-pro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-pro-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 1.25rem;
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(32,199,244,0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.74));
  border: 1px solid rgba(106, 31, 209, 0.14);
  box-shadow: 0 20px 52px rgba(91, 32, 207, 0.1);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(106,31,209,0.1), transparent 46%),
    radial-gradient(circle at 80% 12%, rgba(32,199,244,0.2), transparent 32%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.benefit-pro-card::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.1rem;
  height: 2px;
  background: linear-gradient(90deg, #6a1fd1, #20c7f4, transparent);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.benefit-pro-card:hover {
  transform: translateY(-10px);
  border-color: rgba(32,199,244,0.45);
  box-shadow: 0 30px 72px rgba(91, 32, 207, 0.17);
}

.benefit-pro-card:hover::before {
  opacity: 1;
}

.benefit-pro-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--issabel-purple), var(--issabel-cyan));
  box-shadow: 0 14px 32px rgba(106,31,209,0.26);
  animation: iconFloat 4s ease-in-out infinite;
}

.benefit-pro-card:nth-child(2) .benefit-icon { animation-delay: 0.4s; }
.benefit-pro-card:nth-child(3) .benefit-icon { animation-delay: 0.8s; }
.benefit-pro-card:nth-child(4) .benefit-icon { animation-delay: 1.2s; }

.benefit-icon i {
  font-size: 1.2rem;
}

.benefit-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  color: rgba(106,31,209,0.2);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
}

.benefit-pro-card h3,
.benefit-pro-card p {
  position: relative;
  z-index: 2;
}

.benefit-pro-card h3 {
  margin: 1.15rem 0 0.45rem;
  color: #10061f;
  font-size: 1.26rem;
  font-weight: 900;
}

.benefit-pro-card p {
  margin: 0;
  color: #574f68;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 700;
}

/* ANIMACIONES */
@keyframes benefitsBeam {
  0%, 100% {
    transform: translateX(-45%);
    opacity: 0.16;
  }

  50% {
    transform: translateX(35%);
    opacity: 0.46;
  }
}

@keyframes benefitsFlow {
  0% {
    left: -25%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    left: 105%;
    opacity: 0;
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* DARK MODE */
body.dark-mode .issabel-benefits-pro {
  background:
    radial-gradient(circle at 15% 18%, rgba(106,31,209,0.22), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(32,199,244,0.14), transparent 32%),
    linear-gradient(180deg, #07111b 0%, #0b1724 100%);
}

body.dark-mode .benefits-pro-head h2,
body.dark-mode .benefit-pro-card h3 {
  color: #ffffff;
}

body.dark-mode .benefits-pro-head p,
body.dark-mode .benefit-pro-card p {
  color: rgba(255,255,255,0.76);
}

body.dark-mode .benefit-pro-card {
  background:
    radial-gradient(circle at top right, rgba(32,199,244,0.1), transparent 34%),
    rgba(13,27,42,0.88);
  border-color: rgba(255,255,255,0.08);
}

body.dark-mode .benefit-tag {
  color: rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .benefits-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .issabel-benefits-pro {
    padding: 76px 0;
  }

  .benefits-pro-head h2 {
    font-size: 2rem;
  }

  .benefits-pro-grid {
    grid-template-columns: 1fr;
  }

  .benefit-pro-card {
    min-height: auto;
  }
}



/* =========================================================
   DARK MODE - ISSABEL
========================================================= */

body.dark-mode .issabel-ael-section,
body.dark-mode .issabel-ael-soft,
body.dark-mode .issabel-platform-tech {
  background:
    radial-gradient(circle at 12% 18%, rgba(106, 31, 209, 0.13), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(32, 199, 244, 0.1), transparent 30%),
    linear-gradient(180deg, #07111b 0%, #0b1724 100%) !important;
}


body.dark-mode .issabel-platform-copy h2,
body.dark-mode .issabel-ael-cards h3,
body.dark-mode .issabel-ael-industries span,
body.dark-mode .issabel-ael-feature-list span {
  color: #ffffff !important;
}


body.dark-mode .issabel-platform-copy p,
body.dark-mode .issabel-ael-cards p {
  color: rgba(255,255,255,0.72) !important;
}

body.dark-mode .issabel-ael-cards article,
body.dark-mode .issabel-ael-feature-list div,
body.dark-mode .issabel-ael-industries div,
body.dark-mode .issabel-platform-actions div,
body.dark-mode .issabel-dashboard-card {
  background: rgba(13, 27, 42, 0.92) !important;
  border-color: rgba(255,255,255,0.08) !important;
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal{
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* Variantes opcionales */

.reveal-left{
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.reveal-left.active{
  opacity: 1;
  transform: translateX(0);
}

.reveal-right{
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s ease;
}

.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom{
  opacity: 0;
  transform: scale(.9);
  transition: all 1s ease;
}

.reveal-zoom.active{
  opacity: 1;
  transform: scale(1);
}

.issabel-final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(106, 31, 209, 0.18), transparent 30%),
    radial-gradient(circle at 80% 25%, rgba(32, 199, 244, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f2edff 100%);
}

/* =========================================================
   CONTACTO FULL SECTION
========================================================= */

.issabel-contact-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(106, 31, 209, 0.3), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(32, 199, 244, 0.2), transparent 34%),
    linear-gradient(135deg, #10061f 0%, #25104a 55%, #061525 100%);
}

.contact-tech-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 86%, transparent 100%);
  pointer-events: none;
}

.contact-tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(32,199,244,0.2) 48%, transparent 72%);
  animation: serviceBeam 7s ease-in-out infinite;
}

.issabel-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.contact-copy h2 {
  margin: 1rem 0 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.4vw, 3.45rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-copy p {
  max-width: 560px;
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 700;
}

.contact-highlights {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-highlights div {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.contact-highlights i {
  color: #20c7f4;
}

/* FORMULARIO SIN CAJA */
.issabel-contact-form {
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.form-field {
  position: relative;
}

.form-field i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #20c7f4;
  z-index: 2;
}

.textarea-field i {
  top: 1.25rem;
  transform: none;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  outline: none;
  border-radius: 10px;
  padding: 1rem 1rem 1rem 2.8rem;
  color: #ffffff;
  background: rgba(255,255,255,0.085);
  backdrop-filter: blur(12px);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 138px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.58);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(32,199,244,0.72);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(32,199,244,0.12);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.contact-actions .btn {
  gap: 0.55rem;
  min-height: 52px;
  padding: 1rem 1.6rem;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .issabel-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-highlights div {
    width: 100%;
    justify-content: center;
  }

  .contact-actions {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .issabel-contact-section {
    padding: 76px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .contact-copy h2 {
    font-size: 2rem;
  }
}
/* =========================================================
   NAVBAR TRANSPARENTE EN HERO - ISSABEL
========================================================= */

/* Estado inicial: sobre el hero */
.navbar {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.navbar .nav-links > li > a {
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.75);
}

.navbar .nav-links > li > a:hover {
  color: #20c7f4 !important;
}

/* Botones sobre el hero */
.navbar .theme-btn {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.navbar .nav-btns .btn {
  background: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

/* Al bajar: navbar normal */
.navbar.nav-scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(106,31,209,0.14) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08) !important;
}

.navbar.nav-scrolled .nav-links > li > a {
  color: #0f2238 !important;
  text-shadow: none;
}

.navbar.nav-scrolled .nav-links > li > a:hover {
  color: #6a1fd1 !important;
}

.navbar.nav-scrolled .theme-btn {
  background: linear-gradient(135deg, #6a1fd1, #20c7f4) !important;
  color: #ffffff !important;
  box-shadow: 0 0 14px rgba(32,199,244,0.35);
}

.navbar.nav-scrolled .nav-btns .btn {
  background: linear-gradient(135deg, #6a1fd1, #20c7f4) !important;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 14px 34px rgba(106,31,209,0.26);
}

/* Modo oscuro al bajar */
body.dark-mode .navbar.nav-scrolled {
  background: rgba(7,17,27,0.94) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

body.dark-mode .navbar.nav-scrolled .nav-links > li > a {
  color: #ffffff !important;
}


/* Quitar lineas decorativas del footer */
.footer-ael-tech::before {
  display: none;
}

.footer-ael-column h4::after {
  display: none;
}

.footer-ael-bottom {
  border-top: 1px solid rgba(217, 188, 255, 0.12);
}

/* BENEFICIOS - fondo morado */
.issabel-benefits-pro {
  background:
    radial-gradient(circle at 15% 18%, rgba(32, 199, 244, 0.16), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(157, 78, 221, 0.22), transparent 32%),
    linear-gradient(135deg, #10061f 0%, #25104a 55%, #061525 100%) !important;
}

.issabel-benefits-pro .benefits-pro-head h2,
.issabel-benefits-pro .benefits-pro-head p {
  color: #ffffff !important;
}

/* SERVICIOS - fondo blanco */
.ael-service-section {
  background: #ffffff !important;
}

.ael-service-bg {
  display: none;
}

.ael-service-copy h2 {
  color: #10061f !important;
}

.ael-service-copy p {
  color: #514865 !important;
}

.service-checks div,
.service-metrics div {
  background: #ffffff !important;
  border: 1px solid rgba(106, 31, 209, 0.14) !important;
  color: #10061f !important;
  box-shadow: 0 16px 38px rgba(91, 32, 207, 0.08);
}

.service-checks div {
  color: #10061f !important;
}

.service-metrics span {
  color: #514865 !important;
}

/* SERVICIOS - modo oscuro */
body.dark-mode .ael-service-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(106, 31, 209, 0.22), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(32, 199, 244, 0.14), transparent 34%),
    linear-gradient(135deg, #07111b 0%, #0b1724 55%, #061525 100%) !important;
}

body.dark-mode .ael-service-bg {
  display: block;
}

body.dark-mode .ael-service-copy h2 {
  color: #ffffff !important;
}

body.dark-mode .ael-service-copy p {
  color: rgba(255,255,255,0.76) !important;
}

body.dark-mode .service-checks div,
body.dark-mode .service-metrics div {
  background: rgba(13, 27, 42, 0.88) !important;
  border-color: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
}

body.dark-mode .service-metrics span {
  color: rgba(255,255,255,0.78) !important;
}

body.dark-mode .service-metrics strong,
body.dark-mode .service-checks i {
  color: #20c7f4 !important;
}
/* Quitar cuadritos/rejillas de fondo en todo */
.issabel-platform-bg,
.benefits-tech-bg,
.ael-service-bg,
.contact-tech-bg,
.footer-ael-tech::before {
  display: none !important;
  background-image: none !important;
}

.issabel-platform-bg::before,
.benefits-tech-bg::before,
.ael-service-bg::before,
.contact-tech-bg::before {
  display: none !important;
}

.logo a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-normal {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.logo-light {
  opacity: 1;
}

/* Cuando baja: aparece el logo normal */
.navbar.nav-scrolled .logo-light {
  opacity: 0;
}

.navbar.nav-scrolled .logo-normal {
  opacity: 1;
}

/* Dark mode bajando: puedes mantener el blanco si quieres */
body.dark-mode .navbar.nav-scrolled .logo-light {
  opacity: 1;
}

body.dark-mode .navbar.nav-scrolled .logo-normal {
  opacity: 0;
}