.elementor-kit-31{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;font-family:"Tahoma", Sans-serif;}.elementor-kit-31 e-page-transition{background-color:#FFBC7D;}.elementor-kit-31 a{color:#E69310;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ======================================================
   IA360 – HEADER + MEGA MENU (GLOBAL)
   ====================================================== */

/* VARIABLES BASE */
:root {
  --hud-bg-dark: #0A0A14;
  --hud-bg-medium: #1A1A2A;
  --hud-text-light: #F0F0FF;
  --hud-accent-orange: #FF7A00;
  --hud-accent-red: #FF5500;
  --hud-accent-yellow: #FFB400;
  --hud-border-light: rgba(255, 122, 0, 0.25);
  --hud-bg-alpha: rgba(26, 26, 42, 0.98);

}

/* RESET MÍNIMO */
.main-header * {
  box-sizing: border-box;
}

/* HEADER */
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hud-border-light);
}

.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 48px;
  transition: transform .3s ease;
}
.logo:hover img {
  transform: scale(1.05);
}

/* NAV */
.main-nav {
  display: flex;
}

/* MEGA MENU ROOT */
.mega-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.mega-menu > li {
  position: relative;
}

.mega-menu > li > a {
  padding: 15px 20px;
  color: var(--hud-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  position: relative;
  text-decoration: none;
}

/* UNDERLINE EFFECT */
.mega-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--hud-accent-orange),
    var(--hud-accent-yellow)
  );
  transition: .3s ease;
  opacity: 0;
}

.mega-menu > li:hover > a::after {
  width: 100%;
  left: 0;
  opacity: 1;
}

.mega-menu > li:hover > a {
  color: var(--hud-accent-orange);
}

/* DROPDOWN */
.mega-menu-dropdown {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--hud-bg-alpha);
  backdrop-filter: blur(15px);
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: .3s ease;
  z-index: 999;
}

.mega-menu > li:hover .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN GRID */
.mega-menu-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* COLUMN */
.mega-menu-column h4 {
  color: var(--hud-accent-yellow);
  margin-bottom: 15px;
  font-size: 1.1em;
  text-transform: uppercase;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-column ul li a {
  display: block;
  padding: 8px 10px;
  color: var(--hud-text-light);
  text-decoration: none;
  border-radius: 6px;
  transition: .2s ease;
}

.mega-menu-column ul li a:hover {
  background: rgba(255,122,0,.05);
  color: var(--hud-accent-yellow);
  transform: translateX(5px);
}

/* FEATURE BLOCK */
.feature-block {
  background: var(--hud-bg-medium);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--hud-border-light);
  text-align: center;
}

/* MOBILE */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: var(--hud-accent-orange);
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: rgba(10,10,20,.95);
    flex-direction: column;
  }

  .main-nav.active {
    display: flex;
  }

  .mega-menu {
    flex-direction: column;
  }

  .mega-menu-dropdown {
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .mega-menu > li.active .mega-menu-dropdown {
    display: block;
  }
}


/* =========================================================
   HERO IA360 – VIDEO + GLASS (BASE REAL)
========================================================= */

.hero-ia360 {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a14;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,20,0.85),
    rgba(10,10,20,0.65),
    rgba(10,10,20,0.85)
  );
  z-index: 1;
}

/* CONTENT */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  color: #ffffff;
}

/* TITLE */
.hero-title {
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ff7a00;
  margin-bottom: 30px;
}

/* TEXT */
.hero-text {
  font-size: 1.25rem;
  max-width: 760px;
  margin: 0 auto 35px;
  opacity: 0.95;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 16px 36px;
  background-color:white ;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 40px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,122,0,0.45);
  opacity: 0.6;
}

/* QUOTE GLASS */
.hero-quote {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 16px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);

  box-shadow: 0 15px 40px rgba(0,0,0,0.55);
}

.quote-bar {
  width: 4px;
  background: #ff7a00;
  border-radius: 4px;
}

.hero-quote p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }
}

/* =========================================================
   ABOUT / QUIÉNES SOMOS – GLASS PRO INTERACTIVO
========================================================= */
.about-section {
  position: relative;
  padding: 60px 20px 60px;
  background: #0a0a14;
  display: flex;
  justify-content: center;
}
/* CARD GLASS */
.about-glass {
  max-width: 1100px;
  padding: 50px 60px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}
/* HOVER → EFECTO REAL */
.about-glass:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,122,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.22);
}
/* CONTENIDO */
.about-content {
  text-align: center;
  color: #ffffff;
}
/* EYEBROW */
.about-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff7a00;
}
/* TÍTULO */
.about-content h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  margin-bottom: 28px;
  line-height: 1.15;
  transition: color .3s ease;
}
/* TEXTO */
.about-content p {
  font-size: 1.1rem;
  max-width: 820px;
  margin: 0 auto 20px;
  opacity: 0.9;
}
/* TÍTULO SE REALZA EN HOVER */
.about-glass:hover h2 {
  color: #ff7a00;
}
/* MOBILE */
@media (max-width: 768px) {
  .about-section {
    padding: 50px 20px 50px;
  }
  .about-glass {
    padding: 40px 28px;
    border-radius: 18px;
  }
}
/* =========================================================
   WHY IA360 – GLASS PRO (CON PUMP HOVER)
========================================================= */
.why-ia360 {
  position: relative;
  padding: 60px 20px 70px;
  background: #0a0a14;
  text-align: center;
}
/* HEADER */
.why-header {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.why-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #ff7a00;
  margin-bottom: 18px;
}
.why-divider {
  display: inline-block;
  width: 70px;
  height: 4px;
  background: #ff7a00;
  border-radius: 4px;
  margin-bottom: 28px;
}
.why-subtitle {
  font-size: 1.35rem;
  color: #ffffff;
  opacity: 0.95;
  max-width: 900px;
  margin: 0 auto;
}
/* GRID */
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
/* CARD */
.why-card {
  padding: 40px 32px;
  border-radius: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 122, 0, 0.35);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(0) scale(1);
  transition:
    transform .35s cubic-bezier(.34,1.56,.64,1),
    box-shadow .35s ease,
    border-color .35s ease;
}
/* HOVER – PUMP EFFECT */
.why-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(255, 122, 0, 0.75);
  box-shadow:
    0 45px 100px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,122,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
/* ICON + TEXT */
.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.6rem;
  color: #ff7a00;
  margin-bottom: 18px;
  transition: color .3s ease;
}
.why-card p {
  font-size: 1.05rem;
  color: #ffffff;
  opacity: 0.9;
}
/* TÍTULO SE REALZA */
.why-card:hover h3 {
  color: #ff9a3c;
}
/* MOBILE (SIN PUMP EXAGERADO) */
@media (max-width: 768px) {
  .why-ia360 {
    padding: 50px 20px 60px;
  }
  .why-card {
    padding: 40px 28px;
  }
  .why-card:hover {
    transform: translateY(-6px) scale(1.02);
  }
  .why-subtitle {
    font-size: 1.2rem;
  }
}

/* =========================================================
   NUESTROS PILARES – MOBILE FIRST (FUENTE REAL)
========================================================= */
/* SECTION */
.pillars-section {
  padding: 60px 20px;
  background: #0a0a14;
  text-align: center;
}
/* HEADER */
.pillars-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #ff7a00;
  margin-bottom: 18px;
}
.pillars-divider {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #ff7a00;
  border-radius: 4px;
}
/* GRID – MOBILE FIRST */
.pillars-grid {
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr; /* mobile */
  gap: 32px;
  max-width: 1200px;
}
/* CARD BASE */
.pillar-card {
  padding: 40px 32px;
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition:
    transform .35s cubic-bezier(.34,1.56,.64,1),
    box-shadow .35s ease,
    border-color .35s ease,
    color .35s ease;
}
/* ICON */
.pillar-icon {
  font-size: 2.6rem;
  margin-bottom: 22px;
  color: #ff7a00;
}
/* TITLE */
.pillar-card h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #ffffff;
  transition: color .3s ease;
}
/* TEXT */
.pillar-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
}
/* HOVER – EFECTO REAL (NARANJO SOLO AQUÍ) */
.pillar-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(255,122,0,0.75);
  box-shadow:
    0 45px 100px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,122,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.pillar-card:hover h3 {
  color: #ff7a00;
}
/* DESKTOP – 2 COLUMNAS / 2 FILAS */
@media (min-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .pillars-section {
    padding: 80px 20px;
  }
}

/* =========================================================
   ACERCA DE IA360 – GLASS PRINCIPAL
========================================================= */

.about-ia360-section {
  padding: 90px 20px;
  background: #0a0a14;
  display: flex;
  justify-content: center;
}

/* GLASS CONTENEDOR */
.about-ia360-glass {
  max-width: 1200px;
  width: 100%;
  padding: 80px 90px;
  border-radius: 26px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

/* HEADER */
.about-ia360-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-ia360-header h2 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: #ff7a00;
  margin-bottom: 18px;
}

.about-ia360-divider {
  display: inline-block;
  width: 70px;
  height: 4px;
  background: #ff7a00;
  border-radius: 4px;
}

/* CONTENT GRID – MOBILE FIRST */
.about-ia360-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.about-ia360-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 22px;
}

.about-ia360-founder {
  font-style: italic;
}

/* SIGNATURE */
.about-ia360-signature {
  margin-top: 35px;
}

.about-ia360-signature strong {
  font-size: 1.3rem;
  color: #ffffff;
}

.about-ia360-signature span {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* LOGO */
.about-ia360-logo {
  display: flex;
  justify-content: center;
}

.about-ia360-logo img {
  max-width: 260px;
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(255,122,0,0.35));
}

/* DESKTOP – DOS COLUMNAS */
@media (min-width: 992px) {
  .about-ia360-section {
    padding: 120px 20px;
  }

  .about-ia360-content {
    grid-template-columns: 2fr 1fr;
    gap: 80px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-ia360-glass {
    padding: 50px 35px;
  }

  .about-ia360-header {
    margin-bottom: 50px;
  }

  .about-ia360-logo img {
    max-width: 200px;
  }
}


/* =========================================================
   LO QUE OFRECEMOS – GRID CENTRADO REAL
========================================================= */
.services-section {
  padding: 60px 20px;
  background: #0a0a14;
  text-align: center;
}
/* HEADER */
.services-header h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #ff7a00;
  margin-bottom: 18px;
}
.services-divider {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: #ff7a00;
  border-radius: 4px;
  margin-bottom: 22px;
}
.services-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.9;
  max-width: 720px;
  margin: 0 auto;
}
/* GRID – MOBILE FIRST */
.services-grid {
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1200px;
  justify-items: center;
}
/* CARD */
.service-card {
  width: 100%;
  max-width: 360px;
  padding: 40px 32px;
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition:
    transform .35s cubic-bezier(.34,1.56,.64,1),
    box-shadow .35s ease,
    border-color .35s ease;
}
/* ICON */
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 22px;
  color: #ff7a00;
}
/* TITLE */
.service-card h3 {
  font-size: 1.6rem;
  color: #ff7a00;
  margin-bottom: 18px;
}
/* TEXT */
.service-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
}
/* HOVER */
.service-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(255,122,0,0.75);
  box-shadow:
    0 45px 100px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,122,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
/* DESKTOP – 6 COLUMN GRID (CLAVE) */
@media (min-width: 992px) {
  .services-section {
    padding: 80px 20px;
  }
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
  }
  /* TODAS LAS CARDS OCUPAN 2 COLUMNAS */
  .service-card {
    grid-column: span 2;
  }
  /* FILA 2 CENTRADA */
  .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .service-card {
    padding: 44px 32px;
  }
  .service-card:hover {
    transform: translateY(-6px) scale(1.02);
  }
}


/* ================================
   HOW WE WORK – TIMELINE (VERDAD)
================================ */

.how-we-work-section {
  background-color: var(--hud-bg-medium);
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.how-we-work-section .subtitle {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.5em;
  font-weight: 500;
  color: var(--hud-text-light);
  opacity: 0.95;
}

/* CONTENEDOR TIMELINE */
.work-flow {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding-left: 60px;
  max-width: 900px;
  margin: 0 auto;
}

/* LÍNEA VERTICAL */
.work-flow::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--hud-accent-orange),
    var(--hud-accent-orange),
    transparent
  );
  border-radius: 3px;
}

/* STEP */
.flow-step {
  position: relative;
  padding: 35px;
  background-color: var(--hud-bg-dark);
  border-radius: 12px;
  border: 1px solid var(--hud-glass-border);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* HOVER – DESPLAZAMIENTO */
.flow-step:hover {
  transform: translateX(15px);
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  border-color: var(--hud-accent-orange);
}

/* NÚMERO */
.step-number {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--hud-accent-orange);
  color: var(--hud-bg-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6em;
  font-weight: 700;
  box-shadow: 0 0 0 6px var(--hud-bg-medium);
  border: 2px solid var(--hud-text-light);
  transition: transform 0.3s ease;
  z-index: 2;
}

.flow-step:hover .step-number {
  transform: translateY(-50%) scale(1.1);
}

/* TEXTO */
.flow-step h4 {
  color: var(--hud-accent-yellow);
  margin-bottom: 15px;
  font-size: 1.4em;
}

.flow-step p {
  color: rgba(240,240,255,0.9);
  font-size: 1em;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
  .work-flow {
    padding-left: 40px;
    gap: 35px;
  }

  .step-number {
    left: -25px;
    width: 45px;
    height: 45px;
    font-size: 1.3em;
  }
}


/* =====================================================
   APLICACIONES CLAVE – VERSIÓN INSTITUCIONAL CORRECTA
===================================================== */

.application-section {
  background-color: var(--hud-bg-dark);
  text-align: left;
}

.application-section .section-title {
  text-align: left;
}

.application-section .subtitle {
  text-align: left;
  max-width: 700px;
  margin-bottom: 60px;
}

/* GRID */
.application-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.application-card {
  background: linear-gradient(180deg, #141424, #111120);
  padding: 45px 50px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,122,0,0.15);
  transition: transform .25s ease, box-shadow .25s ease;
}

.application-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
}

/* TITLE */
.application-card h4 {
  font-size: 1.5em;
  color: var(--hud-accent-orange);
  margin-bottom: 25px;
}

/* LIST */
.application-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.application-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: rgba(240,240,255,0.9);
  font-size: 1em;
}

/* CUADRADO OUTLINE – CLAVE */
.application-card ul li::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid var(--hud-accent-yellow);
  position: absolute;
  left: 0;
  top: 7px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .application-grid {
    grid-template-columns: 1fr;
  }

  .application-card {
    padding: 35px;
  }
}

/* =========================================================
   APLICACIONES CLAVE – GRID 2x2
   Reutiliza estilo de "Nuestros Pilares"
========================================================= */

/* Desktop y tablets grandes */
.applications-clone .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas */
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .applications-clone .why-grid {
    grid-template-columns: 1fr; /* 1 columna */
    gap: 30px;
  }
}


/* =========================================================
   SOLUCIONES MULTIPLATAFORMA – CLON FIEL
========================================================= */

.multiplatform-section {
  background: radial-gradient(circle at top, #121225 0%, #0a0a14 70%);
  padding: 110px 20px;
  text-align: center;
}

/* TITULOS */
.multiplatform-section .section-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: #ff7a00;
  margin-bottom: 16px;
}

.multiplatform-section .subtitle {
  font-size: 1.3rem;
  color: #ffffff;
  opacity: 0.95;
  max-width: 900px;
  margin: 0 auto 60px;
}

/* GRID DE DISPOSITIVOS */
.devices-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 60px;
}

/* ITEM */
.devices-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 22px 20px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);

  border: 1px solid rgba(255, 122, 0, 0.35);

  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.15);

  transition: all .3s ease;
}

/* ICONOS */
.devices-list span i {
  font-size: 1.4rem;
  color: #ffb347;
  transition: transform .3s ease, color .3s ease;
}

/* HOVER */
.devices-list span:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.75),
    inset 0 1px 0 rgba(255,255,255,0.25);
  border-color: #ff7a00;
}

.devices-list span:hover i {
  transform: scale(1.15);
  color: #ff7a00;
}

/* TEXTO FINAL */
.multiplatform-section .activation {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.95;
}

/* MOBILE */
@media (max-width: 768px) {
  .multiplatform-section {
    padding: 90px 20px;
  }

  .devices-list {
    gap: 20px;
  }
}

/* FIX ICONOS MULTIPLATAFORMA */
.devices-list i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;

  font-size: 1.2rem;
  color: #ffb347;
}

.devices-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 183, 71, 0.45);
  color: #ffb347;

  font-weight: 500;
  transition: all .3s ease;
}

.devices-list span:hover {
  background: rgba(255, 183, 71, 0.15);
  border-color: #ff7a00;
  transform: translateY(-3px);
}

.devices-list span:hover i {
  color: #ff7a00;
}



/* ================================
   CERTIFICACIONES Y EXPERIENCIA
================================ */

.certifications-section {
    background: var(--hud-bg-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.certifications-section .subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.2em;
    color: rgba(240, 240, 255, 0.9);
}

/* Caja principal (glass panel) */
.cert-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 60px;
    background: linear-gradient(
        145deg,
        rgba(25, 25, 40, 0.85),
        rgba(15, 15, 30, 0.9)
    );
    border-radius: 20px;
    border: 1px solid var(--hud-glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 0 40px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}

/* Texto descriptivo */
.cert-description {
    font-size: 1.05em;
    line-height: 1.7;
    color: rgba(240, 240, 255, 0.95);
    margin-bottom: 35px;
}

/* Lista */
.cert-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 18px;
    font-size: 1em;
    color: rgba(240, 240, 255, 0.9);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Bullet personalizado */
.cert-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--hud-accent-orange);
    font-size: 0.9em;
}

/* Hover sutil */
.cert-box:hover .cert-list li {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .cert-box {
        padding: 40px 25px;
    }

    .certifications-section {
        padding: 90px 0;
    }
}


/* ===== CONTACTO ===== */
.contact-section { 
  background: var(--hud-bg-dark); 
  padding: 60px 0; 
}

.contact-form {
  max-width: 760px; 
  margin: 0 auto; 
  padding: 40px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hud-glass-border);
  border-radius: 20px;
}

.form-group { 
  position: relative; 
  margin-bottom: 22px; 
}

.form-group label { 
  display: block; 
  margin-bottom: 8px; 
  color: #fff; 
}

.form-group input, 
.form-group textarea {
  width: 100%; 
  padding: 14px 16px; 
  border-radius: 12px;
  background: rgba(0,0,0,.35); 
  border: 1px solid rgba(255,122,0,.25);
  color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none; 
  border-color: #ff7a00; 
  box-shadow: 0 0 0 2px rgba(255,122,0,.25);
}

.btn-primary { 
  background: #ff7a00; 
  color: #000; 
  border-radius: 999px;
  padding: 14px 40px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ff9a3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,122,0,0.4);
}

/* ===== MODAL ===== */
.thanks-modal {
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: none; 
  align-items: center; 
  justify-content: center; 
  z-index: 9999;
}

.thanks-modal.open { 
  display: flex; 
}

.thanks-box {
  background: rgba(20,20,35,.95); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hud-glass-border);
  border-radius: 20px; 
  padding: 40px; 
  text-align: center; 
  max-width: 420px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { 
    transform: translateY(-50px); 
    opacity: 0; 
  }
  to { 
    transform: translateY(0); 
    opacity: 1; 
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .thanks-box {
    margin: 0 20px;
    padding: 30px 20px;
  }
}

/* ======================================
   FOOTER – FUENTE DE LA VERDAD
====================================== */

.main-footer {
    background-color: #0a0a14;
    padding: 60px 20px 40px;
    text-align: center;
    color: #ffffff;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* CONTACTO */
.footer-contact {
    margin-bottom: 25px;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact i {
    margin-right: 8px;
    color: #ff7a00;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ff7a00;
}

/* REDES SOCIALES */
.footer-social {
    margin: 25px 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ff7a00;
    color: #000000;
    transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-copyright {
    margin-top: 25px;
    font-size: 0.8rem;
    opacity: 0.6;
}/* End custom CSS */