/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --bg-light: #F8F9FA;
  --bg-dark: #0B0E14;
  --accent-blue: #0055FF;
  --accent-cyan: #0ea2bd;
  --text-main: #121212;
  --text-muted: #6C757D;
  --white: #ffffff;
  --font-main: 'Inter', 'SF Pro', 'Helvetica Now', 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Additional Variables for Templates */
  --accent-color: #0055FF;
  --heading-color: #000000;
  --default-color: #444444;
  --contrast-color: #ffffff;
  --surface-color: #ffffff;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #0044cc;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text-main);
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-main);
  padding: 100px 0;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 100px 0;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0678e3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
    color: #FFFFFF;
  }
}

/*--------------------------------------------------------------
# Language Switcher
--------------------------------------------------------------*/
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

@media (max-width: 991px) {
  .language-switcher-container {
    display: flex !important;
    padding: 0 15px;
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
  }

  .language-switcher {
    position: static;
    width: auto;
    display: flex;
    justify-content: center;
  }

  .language-switcher .btn-lang {
    width: auto;
    min-width: 100px;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: rgba(0, 0, 0, 0.7);
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 991px) {
  #main {
    margin-left: 0px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505B;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #DCDCDC;
  height: 56px;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505B;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: #0055FF;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle i {
  color: #FFFFFF;
}

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

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.divlogo {
  width: 100%;
  padding: 0px 0px !important;
  z-index: 999;
}

.divlogo p {
  text-align: left;
}

.divlogo p span {
  display: inline;
  margin: 0;
  padding: 0;
  text-align: inherit;
}

/*
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 40px;
  background-color: #000000; /* Fondo negro por defecto 
  overflow: hidden; /* Asegura que el video no se salga del contenedor 
}

#hero video#heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que el video cubra todo el contenedor 
  z-index: -0; /* Coloca el video detrás del contenido 
}
*/

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 40px;
  overflow: hidden;
  background-color: #000;
  /* respaldo si Vanta no carga */
}

#hero canvas {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
}



@media (min-width: 992px) {
  #hero {
    padding-left: 0px;
  }
}

/* 
#hero:before {
  content: "";
  background: rgba(20, 20, 20, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}*/

#hero h2 {
  /*font-family: 'Montserrat', sans-serif; /* Fuente principal para el subtítulo */
  font-size: 2rem;
  /* Ajusta el tamaño según sea necesario */
  font-weight: 700;
  /* Peso de la fuente, 700 es bold */
  color: #34495e;
  /* Color del texto */
  line-height: 1.3;
  /* Altura de línea para mejor legibilidad */
  margin: 0 0;
  /* Margen superior e inferior */
  padding: 0px 50px;
  /* Relleno lateral */
  text-align: center;
  /* Centramos el texto */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  /* Sombra ligera */
  letter-spacing: 1px;
  /* Espaciado entre letras */
  transition: color 0.3s ease;
  /* 
  margin: 0 0 50px 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 56px;
  color: #000000;*/
}

.logo img {
  max-height: 300px;
  max-width: 70%;
  margin-bottom: 50px;
}

#logoA img {
  max-height: 300px;
}

.logo2 {
  display: none;
}

.divlogo {
  text-align: center;
  /* Centra los elementos hijos dentro del contenedor */
  padding: 0px 0px !important;
}


#hero h1 {
  /*font-family: 'Montserrat', sans-serif; /* Fuente principal para el subtítulo */
  font-size: 2rem;
  /* Ajusta el tamaño según sea necesario */
  font-weight: 200;
  /* Peso de la fuente, 700 es bold */
  color: #F1F6FE;
  /* Color del texto */
  line-height: 1.3;
  /* Altura de línea para mejor legibilidad */
  margin: 0 0 0 0;
  /* Margen superior e inferior */
  padding: 20px 0px;
  /* Relleno lateral */
  text-align: left;
  /* Centramos el texto */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  /* Sombra ligera */
  letter-spacing: 1px;
  /* Espaciado entre letras */
  transition: color 0.3s ease;
  /* 
  margin: 0 0 50px 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 56px;
  color: #000000;*/
}

#hero p {
  color: #A626A4;
  margin: 0 0 0 0;
  padding: 0px 0px;
  font-size: 26px;
  text-align: center;
  /* centra el texto horizontalmente */
}

.tit1 {
  color: #4D4D4D;
  margin: 0 0 50px 0;
  font-weight: 50;
  font-size: 26px;
  font-family: "Fira code", sans-serif;
}

.tit2 {
  color: #6C6F71;
  margin: 0 0 50px 0;
  font-weight: 50;
  font-size: 26px;
  font-family: "Fira code", sans-serif;
}

.typed {
  color: #00D0FF;
  letter-spacing: 1px;
  font-size: 24px;
  font-weight: 400;
  font-family: Helvetica, Arial, sans-serif;
  /* Fuente */
}

#hero .social-links {
  display: none;
  margin: 30px 50px 0 50px;
  text-align: left;
}

#hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: #1951A5;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: #0563bb;
}

.mundo1 {
  display: flex;
  justify-content: center;
  /* centra en X */
  width: 100%;
}

.mundo2 {
  display: none;
}

@media (max-width: 768px) {
  #hero {
    text-align: left;
  }

  #hero h1 {
    margin: 50px 0 0 0;
    /* Margen superior e inferior */
    font-size: 30px;
    line-height: 36px;
    padding: 20px 0px;
    font-weight: 400;
    /* Más grueso */
  }

  #hero h2 {
    padding: 0px;
  }

  #hero p {
    margin: 10px 0 0px 0;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    /* centra el texto horizontalmente */
    height: 41px;
    font-family: Arial, sans-serif !important;
    /* Fuente */
    font-weight: 800;
    /* Más grueso */
  }

  #hero .social-links {
    display: none;
  }

  .logo2 img {
    max-height: 300px;
    max-width: 100%;
    margin: 0;
  }

  .logo2 {
    display: inline-block;
  }

  .logoA {
    display: none;
  }

  .tit1 {
    font-size: 20px;
  }

  .tit2 {
    font-size: 20px;
  }

  .mundo1 {
    display: none;
  }

  .mundo2 {
    display: flex;
    justify-content: center;
    /* centra en X */
    width: 100%;
  }

}


.btn-explore {
  background: #0055FF;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-explore:hover,
.btn-explore:hover i {
  transition: 0.3s ease !important;
  background: #0055FF;
  color: #ffffff !important;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

/* Stats Section Styles */
.hb-stats-item {
  padding: 30px;
  width: 100%;
}

.hb-stats-item span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  /* Regular */
  font-size: 40px;
  display: block;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(45deg, #1A6EEC, #051731);
  -webkit-background-clip: text;
  background-clip: text;
}

.hb-stats-item p {
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  /* Light */
  font-size: 16px;
  color: #000000;
}

/* eBusiness Section Title Style */
.eb-section-title {
  text-align: center;
  padding-bottom: 30px;
}

.eb-section-title h7 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}


.eb-section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}

.eb-section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.eb-section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0055FF;
  /* Blue accent */
  bottom: 0;
  left: calc(50% - 20px);
}

.eb-section-title p {
  margin-bottom: 0;
}

/* Services Section (alt-services style) */
.alt-services .service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.alt-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

.alt-services .card-header {
  background: #fff;
  padding: 20px 30px;
  border-bottom: 1px solid #f0f0f0;
}

.alt-services .icon-box {
  margin-bottom: 15px;
}

.alt-services .icon-box i {
  font-size: 40px;
  color: #0055FF;
}

.alt-services h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
}

.alt-services .card-body {
  padding: 30px;
  flex-grow: 1;
}

.alt-services .feature-image img {
  border-radius: 8px;
  margin-top: 15px;
  max-width: 100%;
  height: auto;
}

.alt-services .card-footer {
  background: #fff;
  padding: 20px 30px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.btn-primary-custom {
  background: #0055FF;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: #0044cc;
  color: #FFFFFF !important;
}

/*--------------------------------------------------------------
# Buttons (CTA)
--------------------------------------------------------------*/
.btn-primary-custom {
  background-color: var(--accent-blue);
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.4s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom:hover {
  background-color: #0044cc;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 85, 255, 0.2);
}

.btn-large-card {
  background: var(--white);
  border: 1px solid #e1e4e8;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
  height: 100%;
  display: block;
}

.btn-large-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-blue);
}

.section-dark .btn-large-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .btn-large-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
}

.section-title h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-title p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;

}

.section-dark .section-title p {
  color: #a0a0a0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  /* background removed - controlled by .section-light/dark classes */
}

#about h2 {
  margin-bottom: 50px;
  text-transform: uppercase;
}

.col-lg-6 {
  padding: 15px 25px;
}

.fondoN {
  /* legacy class content removed - using global section contrast */
}

.fondoN h3,
.fondoN h4,
.fondoN p {
  color: inherit !important;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  padding: 15px 30px;
  /* Relleno lateral */
}

.about p {
  padding: 0px 0px;
  /* Relleno lateral */
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 10px 15px 10px 15px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {

  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.logo-pres1 {
  width: 200px;
}

.fondoN .logo-pres1 {
  display: block;
  /* Asegúrate de que se comporte como un bloque */
  margin-left: 0;
  /* Elimina cualquier margen que lo desplace */
  margin-right: auto;
  /* Opcional: evita que se centre */
  text-align: left;
  /* Opcional: asegura el texto alineado a la izquierda */
}

.AR-pres1 {
  width: 30px;
  margin: 0 15px 0 0;
}

.notebook1 {
  width: 100%;
  height: 100%;
  max-width: 625px;
  object-fit: cover;
  border-radius: 10px;
  /* Ajusta el radio de las esquinas */
}

.notebook2 {
  display: none;
  height: 100%;
  height: 50vh;
  max-width: 625px;
  object-fit: cover;
  border-radius: 10px;
  /* Ajusta el radio de las esquinas */
}

.empresaar {
  margin: 0;
}

@media (max-width: 768px) {
  #about {
    padding: 50px 20px;
  }

  .about .content h3 {
    padding: 15px 0px;
    /* Relleno lateral */
  }

  .about p {
    padding: 0px 0px;
    /* Relleno lateral */
  }

  .notebook1 {
    display: none;
    max-height: 190px;
    object-fit: contain;
  }

  .notebook2 {
    display: flex;
    max-height: 190px;
    justify-content: center;
    align-items: center;
    width: 100%;
    object-fit: contain !important;
  }

  .fondoN .logo-pres1 {
    margin-left: auto;
    /* Centra horizontalmente */
    margin-right: auto;
    text-align: center;
    /* Opcional, si el contenido necesita alineación central */
  }
}

.col-lg-66 {
  display: flex;
  justify-content: center;
  /* Centra horizontalmente */
  align-items: center;
  /* Centra verticalmente */
  height: 100%;
  /* Asegúrate de que el contenedor tenga altura definida */
  text-align: center;
  /* Opcional: centra el texto dentro del párrafo */
}

.col6-img {
  display: flex;
  /* Activa Flexbox */
  justify-content: center;
  /* Centra horizontalmente */
  align-items: center;
  /* Centra verticalmente */
  height: 100%;
}

.col6-img img {
  max-width: 100%;
  /* Asegura que la imagen no se desborde del contenedor */
  object-fit: contain;
}

.col6-img .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
#counts {
  position: relative;
  width: 100%;
  /* background removed */
  overflow: hidden;
}



#counts canvas {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  object-fit: cover;
}

.count-box {
  position: relative;
  z-index: 1;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #F1F6FE;
  border-radius: 10px;
  /* Ajusta el radio de las esquinas */
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #0563bb;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #F1F6FE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #0563bb;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Akills
--------------------------------------------------------------*/

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #45505b;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #f2f3f5;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #0563bb;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

#portfolio {
  background: #F6F9FE;
  padding: 80px 20px 100px 20px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 1;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  /*background: rgba(255, 255, 255, 0.8); */
  padding: 15px;
  /* transition: none; Elimina transiciones innecesarias */
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

/*
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}
*/
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  /*border: 1px solid #106eea;*/
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

.portfolio-details .portfolio-info {
  padding: 30px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 50px 0 50px 0;
  background: #02101C;
  background-size: cover;
  /* La imagen llenará todo el contenedor */
  /* background-attachment: fixed; Fija el fondo para el efecto parallax */
}

.section-title1 {
  text-align: center;
  padding-bottom: 10px;
}

.section-title1 h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 20px;
  position: relative;
  color: #F6F9FE;
}

/*
.section-title1 h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #1951A5;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title1 h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #FFFFFF;
  bottom: 0;
  left: calc(50% - 20px);
}
*/

.section-title1 p {
  color: #F0F0F0;
  margin-bottom: 0;
}

.team .member {
  /* margin-bottom: 20px; */
  overflow: hidden;
  border-radius: 4px;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 0;
  text-align: center;
}

.team .member .member-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  color: #FFFFFF;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

@media (max-width: 768px) {
  .section-title1 {
    padding-bottom: 30px;
  }

  .team .member {
    margin-bottom: 30px;
  }

  .team .member .member-img {
    margin: 0 auto;
    /* Asegura que el contenedor esté centrado */
    width: 70%;
  }

  .team .member .member-info {
    padding: 0px 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# SaaS
--------------------------------------------------------------*/
#saas {
  padding-bottom: 100px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
#services {
  padding: 100px 0;
  background-color: #F6F9FE;
}


.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: #116DC0 !important;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}


/*--------------------------------------------------------------
# Service2
--------------------------------------------------------------*/

.wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.containerAcor {
  height: 400px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
}

.card {
  width: 80px;
  border-radius: .75rem;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2rem;
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  transition: .6s cubic-bezier(.28, -0.03, 0, .99);
  /* box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8); */
}

.card>.row {
  color: white;
  display: flex;
  flex-wrap: nowrap;
}

.card>.row>.icon {
  background: #223;
  color: white;
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.card>.row>.description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 80px;
  width: 520px;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: .3s;
  transition: all .3s ease;
}

/*
.description p {
    color: #b0b0ba;
    padding-top: 5px;
}
*/

.description h4 {
  text-transform: uppercase;
}

input {
  display: none;
}

input:checked+label {
  width: 600px;
}

input:checked+label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.card[for="c1"] {
  background-image: url('../img/servicio1.jpg');
}

.card[for="c2"] {
  background-image: url('../img/servicio2.jpg');
}

.card[for="c3"] {
  background-image: url('../img/servicio3.jpg');
}

.card[for="c4"] {
  background-image: url('../img/servicio4.jpg');
}

.card[for="c5"] {
  background-image: url('../img/servicio5.jpg');
}

.card[for="c6"] {
  background-image: url('../img/servicio6.jpg');
}

#servicescelu {
  display: none;
}

/* Estilos solo para pantallas de tamaño celular */
@media (max-width: 1230px) {

  .carru {
    padding: 0;
  }

  .wrapper {
    display: none;
  }

  #servicescelu {
    display: inline-block;
    padding: 0;
  }

  .servicelu {
    padding: 0;
    height: 500PX;
  }

  .slider1 img {
    width: 100%;
    height: 450PX;
    object-fit: contain;
  }

  .servcelu {
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
    height: 100%;
    /* Altura de toda la pantalla */
    max-height: 550px;
    margin: 0;
    /* Elimina márgenes si los hubiera */
    text-align: center;
    /* Alinea el contenido dentro */
  }

  .swipercelu {
    height: 500px;
    max-height: 600px;
  }

}




/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq2 {
  padding: 15px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
  color: var(--text-main);
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

.listita {
  margin: 15px 40px;
  color: var(--text-main);
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding: 70px 0 70px 0;
  background-color: #F6F9FE;
}

#contact {
  background:
    rgba(255, 255, 255, 0.6) url("../img/contact-bg.png") top center no-repeat;
  background-blend-mode: overlay;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact2 {
  padding: 20px 0;
}

.contact2 .info-box {
  background: rgb(241, 246, 254, 0.6);
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.9);
  padding: 20px 0 30px 0;
}

.contact2 .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact2 .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact2 .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.imgcv {
  width: 100%;
  max-width: 600px;
  /* Limita el ancho máximo */
  object-fit: cover;
  /* Asegura que la imagen cubra todo el contenedor */
  display: block;
  /* Hace que la imagen sea un bloque */
  margin: 0 auto;
  /* Centra la imagen horizontalmente */
  border-radius: 15px;
  /* Redondea las esquinas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* (Opcional) Añade una sombra para mejorar el diseño */
}


/*--------------------------------------------------------------
# SOLICITAR DEMO
--------------------------------------------------------------*/
.SoliDemo {
  padding: 70px 0 70px 0;
  background-color: #F6F9FE;
}

#SoliDemo {
  background:
    rgba(246, 249, 254, 0.6) url("../img/contact-bg.png") top center no-repeat;
  background-blend-mode: overlay;
}

.SoliDemo .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.SoliDemo .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.SoliDemo .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.SoliDemo .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.SoliDemo2 {
  padding: 20px 0;
}

.SoliDemo2 .info-box {
  background: rgb(241, 246, 254, 0.6);
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.9);
  padding: 20px 0 30px 0;
}

.SoliDemo2 .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.SoliDemo2 .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.SoliDemo2 .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.imgcv {
  width: 100%;
  max-width: 600px;
  /* Limita el ancho máximo */
  object-fit: cover;
  /* Asegura que la imagen cubra todo el contenedor */
  display: block;
  /* Hace que la imagen sea un bloque */
  margin: 0 auto;
  /* Centra la imagen horizontalmente */
  border-radius: 15px;
  /* Redondea las esquinas */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* (Opcional) Añade una sombra para mejorar el diseño */
}




/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

#testimonials {
  background: #0B0E14;
  padding: 50px 0 50px 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 15px 0;
  color: inherit;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: inherit;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}

@media (max-width: 768px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }

  #testimonials {
    padding: 50px 0 50px 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #0563bb;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0563bb;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #0563bb;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #0678e3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 0;
}

@media (max-width: 767px) {

  .pre-footer {
    text-align: center;
  }

  .pre-footer .text-end {
    text-align: center !important;
  }

  .pre-footer .social-links {
    justify-content: center !important;
  }

  .pre-footer p:first-child {
    visibility: hidden;
  }

}

.containerFoot {
  width: 100%;
  /* Contenedor ocupa el 100% del ancho */
  text-align: center;
  /* Centra el contenido horizontalmente */
  margin: 0;
  padding: 0px 0 0 0;
  /* Opcional: Centra horizontalmente si es necesario */
  background: #1C1C1C;
}

#footer h3 {
  background: #1C1C1C;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 40px 0 15px 0;
  margin: 0;
}

#footer p {
  font-size: 15;
  background: #1C1C1C;
  color: #FFFFFF;
  padding: 0 25px 15px 25px;
  margin: 0;
}

#footer .social-links {
  background: #1C1C1C;
  color: #FFFFFF;
  padding: 0 0 0 0;
  margin: 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1951A5;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #0678e3;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  background: #000000;
  color: #FFFFFF;
  padding: 80px 20px 5px 20px;
}

#footer .credits {
  background: #000000;
  color: #FFFFFF;
  padding: 0px 0 80px 0;
  font-size: 13px;
}

/* Estilos para Foot-colum */
.Foot-colum {
  display: flex;
  /* Activa el modelo de flexbox */
  flex-wrap: wrap;
  /* Permite que los elementos se ajusten en múltiples filas */
  justify-content: space-between;
  /* Espacia uniformemente las columnas */
  background-color: #1C1C1C;
  /* Fondo negro */
  padding: 80px 150px;
  /* Padding para pantallas grandes */
  color: white;
  /* Color general del texto */
}

.foot-logo1 {
  width: 200px;
}

.foot2 {
  display: none;
}

.foot-logo2 {
  display: none;
}

.foot-logo2 {
  height: 75px;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
  .containerFoot {
    padding: 40px 0 0 0;
    /* Opcional: Centra horizontalmente si es necesario */
  }

  #footer .credits {
    padding: 0px 0 80px 0;
  }

  .foot1 {
    display: none;
  }

  .foot-logo1 {
    display: none;
  }

  .foot2 {
    display: inline-block
  }

  .foot-logo2 {
    height: 75px;
    /* Alto fijo */
    width: auto;
    /* Ancho proporcional al alto */
    display: inline-block;
    /* Asegura que no haya comportamiento inline por defecto */
    padding: 0 auto;
    /* Opcional: Centra horizontalmente si es necesario */
    background: #1C1C1C;
  }

  .Foot-colum {
    padding: 40px 20px 40px 20px;
    /* Padding para pantallas grandes */
  }

  .Foot-colum .foot2 {
    display: flex;
    flex-direction: column;
    /* Asegura que los elementos se apilen uno debajo del otro */
    align-items: center;
    /* Centra los elementos horizontalmente si es necesario */
    width: 100%;
    /* Ocupa todo el ancho de pantalla */
  }

  .Foot-colum .foot2 ul {
    list-style: none;
    /* Quita el punto de las listas */
    padding: 0;
    /* Quita margen interno */
  }

  .Foot-colum .foot2 ul li {
    display: flex;
    /* Para alinear ícono y texto */
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    /* Espaciado entre ítems */
  }

  .Foot-colum .foot2 ul li a {
    text-decoration: none;
    /* Sin subrayado */
    color: #565656;
    /* Texto gris */
    transition: color 0.3s ease;
    /* Transición suave en hover */
  }

  .Foot-colum .foot2 ul li a:hover {
    color: #0678e3;
    /* Azul al hacer hover */
  }

  .Foot-colum .foot2 p {
    width: 100%;
    /* Ocupa todo el ancho */
    text-align: center;
    /* Alinea el texto al centro */
    margin-bottom: 15px;
    /* Espaciado entre este bloque y el siguiente */
  }

  .Foot-colum .foot2 .social-links a {
    margin-right: 10px;
    /* Espaciado entre íconos */
    color: white;
    /* Blanco para íconos */
    font-size: 18px;
    /* Tamaño de íconos */
    transition: color 0.3s ease;
    /* Transición suave */
    margin-bottom: 16px;
  }

  .Foot-colum .foot2 .social-links a:hover {
    color: #0678e3;
    /* Azul al hacer hover */
  }

}

/* Estilo para foot1 */
.Foot-colum .foot1 {
  flex: 1;
  /* Se distribuyen equitativamente en pantallas grandes */
}

/* Estilo para los títulos h4 en cada foot1 */
.Foot-colum .foot1 h4 {
  font-size: 18px;
  /* Tamaño del título */
  font-weight: bold;
  /* Negrita */
  color: #3C3C3C;
  /* Color negro */
  margin-bottom: 10px;
  /* Separación con el contenido */
}

/* Estilo para listas (quita puntos) */
.Foot-colum .foot1 ul {
  list-style: none;
  /* Quita el punto de las listas */
  padding: 0;
  /* Quita margen interno */
}

/* Estilo para ítems de la lista */
.Foot-colum .foot1 ul li {
  display: flex;
  /* Para alinear ícono y texto */
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  /* Espaciado entre ítems */
}

/* Estilo para los íconos */
.Foot-colum .foot1 ul li i {
  color: blue;
  /* Color azul para íconos */
  margin-right: 8px;
  /* Separación entre ícono y texto */
}

/* Estilo para los enlaces en las listas */
.Foot-colum .foot1 ul li a {
  text-decoration: none;
  /* Sin subrayado */
  color: #565656;
  /* Texto blanco */
  transition: color 0.3s ease;
  /* Transición suave en hover */
}

/* Cambiar color al hacer hover en los enlaces */
.Foot-colum .foot1 ul li a:hover {
  color: #0678e3;
  /* Azul al hacer hover */
}

/* Estilo para los párrafos */
.Foot-colum .foot1 p {
  color: white;
  /* Texto blanco */
  margin: 5px 0;
  /* Espaciado entre párrafos */
}

/* Estilo para enlaces de redes sociales */
.Foot-colum .foot1 .social-links a {
  margin-right: 10px;
  /* Espaciado entre íconos */
  color: white;
  /* Blanco para íconos */
  font-size: 18px;
  /* Tamaño de íconos */
  transition: color 0.3s ease;
  /* Transición suave */
}

/* Cambiar color al hacer hover en redes sociales */
.Foot-colum .foot1 .social-links a:hover {
  color: #0678e3;
  /* Azul al hacer hover */
}

/*--------------------------------------------------------------
# POP UP - TERMINOS Y POLITICAS
--------------------------------------------------------------*/


.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.popup-content {
  position: relative;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.popup-link {
  color: #007bff;
  /* Azul, como un enlace */
  text-decoration: underline;
  cursor: pointer;
}

.popup-link:hover {
  text-decoration: none;
  /* Opcional: sin subrayado al pasar el ratón */
}


/*--------------------------------------------------------------
# Clients Section 2
--------------------------------------------------------------*/

#clients {
  padding: 70px 0;
  background-color: #F6F9FE;

  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  min-height: 100%;
}

#clients .container {
  height: auto;
  /* que crezca según el contenido */
}

#clients .row {
  display: flex;
  /* activamos flex aquí */
  flex-wrap: nowrap;
  /* que bajen a otra fila si no entran */
  justify-content: center;
  /* centrado horizontal */
  gap: 30px;
  /* espacio entre items */
}

/* 
#clients .row {
  flex-wrap: nowrap;
  justify-content: center;  
  gap: 30px;
}
*/

#clients .client-wrapper {
  flex: 0 0 auto;
  /* no crecer, no encogerse */
  width: auto;
  /* se ajusta al contenido */
}

.clients .client-item {
  padding: 25px;
  width: 300px;
  text-align: center;
  height: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients .client-item img {
  height: 70px;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  filter: grayscale(100);
  opacity: 0.8;
}

.clients .client-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.clients .client-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1199px) {
  .clients .row {
    flex-direction: column;
    /* apila los items */
    align-items: center;
    /* centra en horizontal */
    gap: 15px;
    /* separacion entre logos */
  }

  .clients .client-item {
    width: 100%;
    height: 100px;
    padding: 15px;
  }

  .clients .client-item img {
    filter: grayscale(0);
    height: 60px;
    object-fit: contain;
    /* Mantiene la proporción */
  }

  .clients .client-wrapper {
    width: 100% !important;
    /* que cada item ocupe toda la fila */
    display: flex;
    /* centramos el contenido */
    justify-content: center;
    margin-bottom: 15px;
    /* separacion entre logos */
  }
}

@media (max-width: 767px) {

  .clients .row {
    flex-direction: column;
    /* apila los items */
    align-items: center;
    /* centra en horizontal */
    gap: 15px;
    /* separacion entre logos */
  }

  .clients .client-item {
    width: 100%;
    height: 100px;
    padding: 15px;
  }

  .clients .client-item img {
    filter: grayscale(0);
    height: 60px;
    object-fit: contain;
    /* Mantiene la proporción */
  }

  .clients .client-wrapper {
    width: 100% !important;
    /* que cada item ocupe toda la fila */
    display: flex;
    /* centramos el contenido */
    justify-content: center;
    margin-bottom: 15px;
    /* separacion entre logos */
  }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.stats {
  padding-top: 100px;
  background-color: #F6F9FE;
}

.stats .section-headline {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.stats .section-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.stats .stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-color);
}

.stats .stat-item {
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.stats .stat-item:nth-child(1) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(2) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:nth-child(3) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  transform: translateY(-2px);
}

.stats .stat-item .stat-content {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats .stat-item .stat-number {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.stats .stat-item .stat-number .purecounter {
  font-size: inherit;
  color: inherit;
}

.stats .stat-item .stat-divider {
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  margin: 0 auto 1.5rem auto;
  opacity: 0.6;
}

.stats .stat-item .stat-label {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.stats .stat-item .stat-description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  max-width: 200px;
}

.stats .achievement-badge {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.stats .achievement-badge:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-3px);
}

.stats .achievement-badge .badge-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.stats .achievement-badge .badge-title {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.stats .achievement-badge .badge-text {
  color: color-mix(in srgb, var(--default-color), );
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

@media (max-width: 992px) {
  .stats .section-headline {
    font-size: 2.25rem;
  }

  .stats .stats-container {
    gap: 0;
  }

  .stats .stat-item {
    padding: 2.5rem 2rem;
  }

  .stats .stat-item .stat-number {
    font-size: 3rem;
  }

  .stats .stat-item .stat-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .stats .section-headline {
    font-size: 1.875rem;
  }

  .stats .section-description {
    font-size: 1rem;
  }

  .stats .stats-container {
    grid-template-columns: 1fr;
  }

  .stats .stat-item {
    padding: 2rem 1.5rem;
  }

  .stats .stat-item:nth-child(1) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(2) {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .stats .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .stats .stat-item .stat-number {
    font-size: 2.75rem;
  }

  .stats .stat-item .stat-description {
    max-width: 300px;
  }

  .stats .achievement-badge {
    padding: 2rem 1.5rem;
  }

  .stats .achievement-badge .badge-icon {}

  .stats .achievement-badge .badge-title {
    font-size: 1.25rem;
  }

  .stats .achievement-badge .badge-text {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# eBusiness v23 Redesign Components
--------------------------------------------------------------*/

/* Section Title */
.eb-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.eb-section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.eb-section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-blue);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.eb-section-title p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Service Item (Grid Layout) */
.eb-service-item {
  position: relative;
  padding: 60px 30px 80px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.eb-service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--accent-blue);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.eb-service-item .eb-service-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(0, 85, 255, 0.05);
  color: var(--accent-blue);
  font-size: 34px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.eb-service-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.eb-service-item h3 span {
  color: var(--accent-blue);
}

.eb-service-item .eb-card-action {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-blue);
  color: var(--white);
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.eb-service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.eb-service-item:hover .eb-service-icon {
  transform: scale(1.1);
}

.eb-service-item:hover .eb-card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Service Card (Featured Layout) */
.eb-service-card {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}

.eb-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), #0033aa);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.eb-service-card:hover::before {
  transform: scaleX(1);
}

.eb-service-card.featured {
  border-color: var(--accent-blue);
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.1);
}

.eb-service-card.featured::before {
  transform: scaleX(1);
}

.eb-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-blue);
}

.eb-service-card .eb-card-header {
  padding: 25px 25px 15px;
  text-align: center;
}

.eb-service-card .eb-card-header .eb-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(0, 85, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 32px;
}

.eb-service-card .eb-card-body {
  padding: 0 25px 15px;
  text-align: center;
}

.eb-service-card .eb-card-body .eb-feature-image {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.eb-service-card .eb-card-body .eb-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.eb-service-card:hover .eb-card-body .eb-feature-image img {
  transform: scale(1.1);
}

.eb-service-card .eb-card-footer {
  padding: 15px 25px 25px;
}

.eb-service-card .eb-btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid rgba(0, 85, 255, 0.2);
  border-radius: 8px;
  color: var(--accent-blue);
  font-weight: 600;
  transition: all 0.3s ease;
}

.eb-service-card .eb-btn-explore:hover {
  background: var(--accent-blue);
  color: var(--white);
  border-color: var(--accent-blue);
}

/* Video Background */
.video-background-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-background-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  text-align: center;
}

/* Pricing Styles */
.pricing .pricing-card {
  height: 100%;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing .pricing-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.pricing .pricing-card.popular {
  background: var(--accent-blue);
  color: var(--white);
  border-color: var(--accent-blue);
}

.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4,
.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .amount,
.pricing .pricing-card.popular .price .period,
.pricing .pricing-card.popular .features-list li,
.pricing .pricing-card.popular .features-list li i {
  color: var(--white);
}

.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--accent-blue);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing .pricing-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing .pricing-card .price {
  margin: 5px 0px !important;
}

.pricing .pricing-card .price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 2px;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #000000;
}

.pricing .pricing-card .features-list li i {
  color: var(--accent-blue);
  margin-right: 10px;
  font-size: 1.2rem;
}

.pricing .pricing-card .btn-pricing {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing .pricing-card.popular .btn-pricing {
  background: var(--white);
  color: var(--accent-blue);
  border: none;
}

.pricing .pricing-card.popular .btn-pricing:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.pricing .pricing-card .btn-pricing-outline {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.pricing .pricing-card .btn-pricing-outline:hover {
  background: var(--accent-blue);
  color: var(--white);
}

/* Video Section for Products */
.eb-video-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.eb-video-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.eb-video-container video {
  width: 100%;
  border-radius: 24px;
  display: block;
}

/* v24 HeroBiz Components */
.hb-section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.hb-section-title h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 15px;
}

.hb-section-title p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.hb-service-item {
  background-color: var(--white);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.hb-service-item .icon {
  margin-bottom: 20px;
  width: 72px;
  height: 72px;
  background: var(--accent-cyan);
  color: var(--white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.hb-service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.hb-service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.hb-service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1);
}

.hb-mission-ribbon {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 15px 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
}

.hb-stats-item {
  text-align: center;
  padding: 30px;
}

.hb-stats-item span {
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: var(--accent-cyan);
}

.hb-stats-item p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.hb-founder-card {
  text-align: center;
  margin-bottom: 30px;
}

.hb-founder-card img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--accent-cyan);
}

.hb-founder-card h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.hb-founder-card span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
}

/*--------------------------------------------------------------
# <div class="row justification-content-center">
                    <div class="col-lg-12 d-flex justify-content-center" data-aos="fade-up" data-aos-delay="100">
                        <div class="service-item position-relative" style="max-width: 800px;">
                            <div class="img">
                                <img src="assets/img/plehia/mockup-plehia.png" class="img-fluid" alt="Plehia Office">
                            </div>
                            <div class="details">
                                <div class="icon">
                                    <img src="assets/img/plehia/logo plehia blanco.png" alt="Plehia Logo">
                                </div>
                                <a href="plehia.html" class="stretched-link">
                                    <h3>Plehia <span>Sistema de soporte</span></h3>
                                </a>
                                <p>
                                    Plehia es un sistema de gestión de soporte y tickets que organiza, prioriza y
                                    controla la atención a
                                    clientes, con seguimiento de SLA, asignaciones y métricas para mejorar la calidad
                                    del servicio y la
                                    toma de decisiones.
                                </p>
                            </div>
                        </div>
                    </div>
                </div> Services (HeroBiz Style)
--------------------------------------------------------------*/
.saas-services .img {
  border-radius: 8px;
  overflow: hidden;
}

.saas-services .img img {
  transition: 0.6s;
  width: 100%;
}

.saas-services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 2;
  background: #ffffff;
}

.saas-services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 4px solid var(--contrast-color);
  /* Matches visual better than 6px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.saas-services .details .icon img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.saas-services .details h3 {
  font-weight: 700;
  margin: 15px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
  color: var(--heading-color);
}

.saas-services .details h3 span {
  color: #0055FF;
}

.saas-services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.saas-services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.saas-services .service-item:hover .details .icon {
  background: #178CFA;
  border: 2px solid #178CFA;
}

.saas-services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.saas-services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Alt Services (eBusiness Style)
--------------------------------------------------------------*/
.alt-services .service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  position: relative;
}

.alt-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.alt-services .service-card:hover::before {
  transform: scaleX(1);
}

.alt-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.15);
}

.alt-services .service-card .card-header {
  padding: 25px 25px 15px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.alt-services .service-card .card-header .icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 32px;
  transition: all 0.3s ease;
}

.alt-services .service-card .card-header h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  font-family: 'Roboto', sans-serif;
}

.alt-services .service-card .card-body {
  padding: 0 25px 15px;
  flex-grow: 1;
}

.alt-services .service-card .card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  text-align: center;
  margin-top: 20px;
}

.alt-services .service-card .card-body .feature-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.alt-services .service-card .card-body .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.alt-services .service-card:hover .feature-image img {
  transform: scale(1.1);
}

.alt-services .service-card .card-footer {
  padding: 15px 25px 25px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.alt-services .service-card .card-footer .btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.alt-services .service-card .card-footer .btn-explore:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Footer (PDF Redesign)
--------------------------------------------------------------*/
#footer {
  background-color: #141A1F;
  color: #939A9F;
}

.Foot-colum {
  background-color: #141A1F;
  padding: 40px;
  border-radius: 8px;
  color: #939A9F;
}

/* New Footer Bottom Section */
.footer-bottom {
  background-color: #000000;
  padding: 30px 0;
  text-align: center;
  color: #939A9F;
  width: 100%;
}

.footer-bottom .copyright,
.footer-bottom .credits,
.footer-bottom .footer-links {
  background-color: transparent;
  color: #939A9F;
  margin: 5px 0;
}

.footer-bottom a {
  color: #939A9F;
  text-decoration: none;
}

.footer-bottom .footer-links a {
  margin: 0 5px;
  color: #939A9F;
}

/* Specific link formatting based on request: Only Witcode is blue */
.footer-bottom .copyright a,
.footer-bottom .credits a {
  color: #036DDA !important;
}

/*--------------------------------------------------------------
# Testimonials (Misión/Visión)
--------------------------------------------------------------*/
#testimonials.section-bg {
  background-color: #0B0E14 !important;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0px auto;
  ;
  padding: 10px;
  background: var(--bg-dark);
  position: relative;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.fondoN {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  max-width: 800px;
  /* Restrict width */
  margin: 0 auto;
  /* Center */
}

.fondoN h3 {
  color: #ffffff !important;
}

.fondoN p {
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# Stats Section (PDF Redesign)
--------------------------------------------------------------*/
.hb-stats-item {
  padding: 30px;
  width: 100%;
  text-align: center;
}

.hb-stats-item span {
  font-size: 40px;
  display: inline-block;
  font-weight: 400;
  /* Regular */
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(45deg, #1A6EEC 6%, #051731 94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  /* Spacious margin */
  line-height: 1.2;
}

.hb-stats-item p {
  padding: 0;
  margin: 0 0 20px 0;
  /* Spacious margin below */
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  /* Light */
  font-size: 16px;
  color: #000000;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Presencia Global (PDF Redesign)
--------------------------------------------------------------*/
#global {
  background-color: #F6F9FE !important;
  /* Ensure override */
  padding-top: 100px;
  /* Spacious top margin */
  padding-bottom: 100px;
}

#global .eb-section-title h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  /* SemiBold */
  color: #000000;
  text-transform: uppercase;
  /* Matching visual usually implies uppercase or specific casing, assume match title */
  margin-bottom: 20px;
}

#global .content p {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  /* Light */
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# RRHH Section (PDF Redesign)
--------------------------------------------------------------*/
#rrhh.section-light {
  background-color: #FFFFFF !important;
  padding-top: 60px;
}

#rrhh .eb-section-title h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  /* SemiBold */
  color: #000000;
  text-transform: uppercase;
  /* Looks like normal case or Title Case in image? "Súmate al Equipo" */
}

#rrhh .eb-section-title p {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  /* Light */
  color: #000000;
  font-size: 16px;
  margin-top: 15px;
}

/*--------------------------------------------------------------
# RRHH Section (Refinement)
--------------------------------------------------------------*/
#rrhh .image-container {
  position: relative;
  display: inline-block;
  /* Fits content */
  width: 100%;
  max-width: 800px;
  /* Limit width */
  margin-bottom: 40px;
}

#rrhh .image-container img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

#rrhh .overlay-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  /* Adjusted from 20px for better spacing */
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: calc(100% - 60px);
  /* Responsive safeguard */
  z-index: 10;
}

#rrhh .overlay-card .icon {
  width: 45px;
  height: 45px;
  background-color: #0055FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
}

#rrhh .overlay-card .text {
  display: flex;
  flex-direction: column;
  text-align: left;
  /* Ensure left alignment */
}

#rrhh .overlay-card .text h4 {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}

#rrhh .overlay-card .text p {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #333333;
}

/* Accordion Adjustments */
#rrhh .accordion {
  max-width: 800px;
  margin: 0 auto;
}

#rrhh .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  /* Regular per design typically */
  color: #333;
  font-size: 16px;
}

#rrhh .accordion-button:not(.collapsed) {
  color: #0055FF;
  background-color: transparent;
  box-shadow: none;
}

#rrhh .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

/* VER PLANES */
.btn.btn-primary:hover {
  background-color: #00BBFF !important;
  /* color hover */
  border-color: #00BBFF !important;
  color: #ffffff !important;
}

/* SOLICITAR DEMO */
.btn.btn-outline-primary:hover {
  background-color: #F7FBFF !important;
  border-color: #00BBFF !important;
  color: #00BBFF !important;
}

/* Estilos generales (desktop) */
.features-swiper .swiper-slide img {
  width: 100%;
  height: auto;
}

/* Celulares */
@media (max-width: 576px) {
  .features-swiper .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .features-swiper .swiper-slide img {
    max-width: 80%;
  }
}

.custom-list {
  list-style-type: disc;
  margin-left: 20px;
}