@charset "UTF-8";

* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "open sans";
}

:root {
  --color-de-texto01: #3d3d3d;
  --color-de-texto02: #222222;
}

body {
  font-family: "open sans";
  align-items: center;
  justify-content: center;
}

.fondo-pag {
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
}

.video-main {
  position: absolute;
  right: 100px;
  width: 40%;
  top: 25%;
  z-index: 2;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.intro {
  display: flex;
  color: white;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.typing {
  height: auto;
  margin-left: 10px;
  position: relative;
}

.typing::after {
  content: "";
  position: absolute;
  right: -5px;
  width: 1px;
  height: 100%;
  border-right: 2px solid white;
  animation: blink 0.5s ease infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.ciculo-gris {
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -250px;
  border-radius: 50%;
  position: absolute;
  border: solid 2px #dcdcdc;
}

.rectangulo-naranja {
  width: 950px;
  height: 800px;
  border-radius: 53% 47% 60% 40%/63% 46% 54% 37%;
  position: absolute;
  background: rgb(255, 104, 1);
  background: linear-gradient(5deg, rgb(255, 104, 1) 0%, rgb(255, 251, 1) 100%);
  transform: rotate(-15deg);
  right: -100px;
  opacity: 0.9;
  top: 0px;
}

/*--------------------*/
.boton-pdf-iA {
  width: 200px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.349);
  background-color: rgb(12, 12, 12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}

.icon-btn-iA {
  width: 30px;
  height: 30px;
  background: linear-gradient(to bottom, rgb(255, 136, 255), rgb(172, 70, 255));
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.3s;
}

.icon {
  border-radius: 1px;
}

.texto-btn-iA {
  height: 100%;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
  transition-duration: 0.3s;
  font-size: 1.04em;
}

.boton-pdf-iA:hover .icon-btn-iA {
  width: 190px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.boton-pdf-iA:hover .texto-btn-iA {
  transform: translate(10px);
  width: 0;
  font-size: 0;
  transition-duration: 0.3s;
}

.boton-pdf-iA:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}

/*========================================================================================================================================*/
.container__menu {
  position: fixed;
  width: 100%;
  margin-top: 20px;
  height: 40px;
  margin: 0px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.692);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.logo img {
  width: 150px;
  margin-left: 30px;
}

.menu {
  display: flex;
  align-items: center;
}

.menu ul {
  display: flex;
  margin-right: 30px;
}

.menu ul li {
  list-style: none;
  margin-left: 36px;
}

.menu button a:hover {
  color: #fff;
}

.menu ul li a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 100;
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
}

.menu ul li a:hover {
  text-decoration: none;
  color: #ff6801;
}

#selected {
  background: #ff6801;
  padding: 10px 40px;
  border-radius: 50px;
}

.menu nav img {
  display: none;
}

.menu #btn_menu-H-iA {
  display: none;
}

/*COVER*/
.container__cover {
  width: 100%;
  height: 800px;
  background-image: url(../images/Background-page.svg);
  background-position: right;
  background-repeat: no-repeat;
}

.cover {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container__cover .text {
  max-width: 400px;
}

.container__cover .text h1 {
  font-size: 36px;
  font-weight: 600;
}

.container__cover .text p {
  font-size: 18px;
  margin-top: 40px;
}

@keyframes move-vector {
  0% {
    transform: translateY(15px);
  }

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

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

/*Haciendo la página Responsive*/
/* ========================================================= NABVAR =================================================================================*/
.contenedor-banner-erp-crm img {
  width: 100%;
}

.header-index {
  width: 100%;
  height: 100vh;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, hsla(0, 100%, 0%, 0.7), hsla(0, 0%, 0%, 0.717)), url(../img2/005.jpg);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: cover;
  
  position: relative;
}

.btn-inicio-link {
  z-index: 3;
}

.textos-header {
  display: flex;
  height: 810px;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 3;
  margin:auto;
  text-shadow: 0px 0px 15px 7px rgba(0, 0, 0, 0.5);
}

.textos-header video {
  position: absolute;
  width: 35%;
  right: 10%;
  pointer-events: none;
  
}

.textos-header h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 74px;
  width: 80%;
  z-index: 3;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;

}

.textos-header h2 {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  z-index: 3;
  line-height: 19px;
  letter-spacing: 1px;
  width: 50%;
  color: #fff;
  text-shadow: -4px 2px 5px rgba(0,0,0,0.38);
}

.text-deg {
  background: rgb(255, 220, 1);
  background: linear-gradient(309deg, rgb(255, 220, 1) 0%, rgb(255, 104, 1) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.btn-ingresar {
  background-color: transparent;
  color: #ffffff;
  border: solid 2px #ffffff;
  font-weight: 400;
  padding: 5px 15px 5px 15px;
  border-radius: 25px;
  justify-content: flex-end;
  margin-left: 20px;
}

.btn-ingresar:hover {
  background-color: #ffffff;
  border: solid 2px #ffffff;
  font-weight: 400;
  border-radius: 25px;
  justify-content: flex-end;
}

.btn-crear-cuenta {
  background-color: transparent;
  color: #fff;
  font-weight: 500;
  border: solid 2px #ff6801;
  padding: 5px 15px 5px 15px;
  border-radius: 25px;
  justify-content: flex-end;
}

.btn-crear-cuenta a:hover {
  cursor: pointer;
  color: #fff;
  background-color: #ef6000;
}

.btn-inicio {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: rgb(255, 174, 0);
  --btn-bg-2: rgb(253, 106, 8);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 0.9em 1.4em;
  min-width: 120px;
  min-height: 44px;
  margin-top: 20px;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: 30px;
  color: var(--btn-bg-color);
  box-shadow:
    0px 0px 20px rgba(255, 181, 71, 0.5),
    0px 5px 5px -1px rgba(233, 151, 58, 0.25),
    inset 4px 4px 8px rgba(255, 227, 175, 0.5),
    inset -4px -4px 8px rgba(216, 131, 19, 0.35);
}
.btn-inicio:hover {
  cursor: pointer;
  transform: scale(1.05);
   background-position: right top;
   color: #fff;
}

.btn-inicio:is(:focus, :focus-visible, :active) {
  outline: none;
  color: #fff;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}

/* ===========================================================================================================================================================*/
.pant{
  width: 80%;
  height: auto;
  z-index: 3;
  top: 125vh;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===========================================================================================================================================================*/
header {
  width: 100%;
  height: 90vh;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.header-img {
  position: absolute;
  right: -200px;
  top: -100px;
  height: 80vh;
  z-index: 0;
  animation: rotate 100s linear infinite;
  transform-origin: center;
}

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

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

.seccion-02 {
  background-color: rgba(238, 238, 238, 0.9333333333);
  padding: 30px;
  z-index: -2;
}

.contenedor-main-01 {
  margin: auto;
  padding: 60px 50px 10px 50px;
  width: 80%;
  max-width: 1500px;
  background-color: transparent;
  z-index: 2;
}

.contenedor-main {
  margin: auto;
  padding: 90px 50px 10px 50px;
  width: 80%;
  max-width: 1500px;
  background-color: transparent;
  z-index: 2;
}

.card-01 {
  position: relative;
  background-color: transparent;
  padding: 20px;
  border-radius: 25px;
  height: 50vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
  justify-content: center;
  margin-top: 10%;
}

.titulo-main {
  width: 60%;
  z-index: 3;
}

.card-01 h3 {
  font-size: 22px;
  font-weight: 500;
}

.card-01 h1 {
  font-size: 50px;
  justify-content: center;
  line-height: 52px;
}

.card-02 {
  margin: auto;
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 30px;
  padding: 20px 30px 20px 40px;
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  z-index: 4;
}

.card-02-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-02-text h1 {
  font-size: 40px;
  font-weight: 400;
}

.card-03 {
  margin: auto;
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 30px;
  padding: 20px 30px 20px 40px;
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  z-index: 2;
  height: 450px;
  position: relative;
}

.card-03-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-03-text h1 {
  font-size: 20px;
  font-weight: 500;
  z-index: 2;
}

.card-03-text h2 {
  font-size: 35px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 38px;
  z-index: 2;
}

.card-03-text p {
  font-size: 14px;
  z-index: 2;
}

.card-03 video {
  width: 50%;
  z-index: 2;
}

.puntitos {
  position: absolute;
  width: 150px;
  z-index: 1;
  right: 20px;
}

.barrita {
  width: 200px;
  margin: 20px 0px 20px 0px;
}

.puntitos01 {
  position: absolute;
  width: 150px;
  z-index: 1;
  left: 20px;
  top: 60px;
}

.card-04 {
  margin: auto;
  width: 100%;
  background: #f2f2f2;
  border-radius: 30px;
  padding: 20px 30px 20px 40px;
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  z-index: 2;
  height: 250px;
}

.card-04-text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-04-text h1 {
  font-size: 40px;
  font-weight: 700;
}

.card-04-text p {
  font-size: 13px;
}

.video-SIA-C {
  height: 200px;
}

.btn-sabermas {
  border: solid 2px #ff6801;
  color: #ff6801;
  background-color: transparent;
  width: 200px;
  padding: 5px 30px 5px 30px;
  border-radius: 25px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.btn-sabermas:hover {
  background-color: #ff6801;
  color: white;
  cursor: pointer;
}

.btn-sabermas:active {
  transform: scale(0.95);
}

.titulos-01 {
  color: var(--color-de-texto01);
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
  z-index: 1;
}

.titulos-02 {
  color: var(--color-de-texto02);
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  margin-top: 60px;
  z-index: 1;
}

.titulos-03 {
  font-size: 60px;
  text-align: center;
  color: var(--color-de-texto01);
  margin-bottom: -20px;
}

.titulos-04 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  text-align: center;
  margin-top: 60px;
  z-index: 1;
}

.subtitulos-03 {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.contenedor-grid-03 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  flex-direction: row;
}

.caract-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.caract-header h3 {
  margin-left: 15px;
  font-size: 30px;
  font-weight: 400;
}

.caract-contenido p {
  font-size: 15px;
  margin-top: 15px;
  font-weight: 300;
}

.caract-icon {
  width: 35px;
  display: flex;
  justify-content: center;
  align-self: center;
  max-height: 35px;
}

.card-caracteristicas {
  background-color: #f2f2f2;
  border-radius: 25px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  box-shadow: 6px 4px 5px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 6px 4px 5px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 6px 4px 5px 0px rgba(0, 0, 0, 0.09);
  z-index: 1;
}

/*---------*/
.caract-icons01 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  max-height: 60px;
  padding: 5px;
  border-radius: 50%;
  background: rgb(235, 187, 31);
  background: linear-gradient(4deg, rgb(235, 187, 31) 0%, rgb(235, 231, 31) 100%);
}

.caract-icons02 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  max-height: 60px;
  padding: 5px;
  border-radius: 50%;
  background: rgb(17, 181, 31);
  background: linear-gradient(4deg, rgb(17, 181, 31) 0%, rgb(25, 230, 43) 100%);
}

.caract-icons03 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  max-height: 60px;
  padding: 5px;
  border-radius: 50%;
  background: rgb(181, 17, 17);
  background: linear-gradient(4deg, rgb(181, 17, 17) 0%, rgb(255, 0, 0) 100%);
}

.caract-icons04 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  max-height: 60px;
  padding: 5px;
  border-radius: 50%;
  background: rgb(26, 97, 219);
  background: linear-gradient(4deg, rgb(26, 97, 219) 0%, rgb(86, 148, 255) 100%);
}

.caract-icons05 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  max-height: 60px;
  padding: 5px;
  border-radius: 50%;
  background: rgb(102, 26, 219);
  background: linear-gradient(4deg, rgb(102, 26, 219) 0%, rgb(161, 26, 219) 100%);
}

.caract-icons06 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-width: 60px;
  width: 60px;
  height: 60px;
  max-height: 60px;
  padding: 5px;
  border-radius: 50%;
  background: rgb(11, 182, 157);
  background: linear-gradient(4deg, rgb(11, 182, 157) 0%, rgb(26, 219, 190) 100%);
}

.caract-text {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  color: #1e1e1e;
  font-size: 14px;
}

/*=========================================================================== PAQUETES ============================================================================*/
.cont-pox-paq {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.badge-pox-paq {
  border-radius: 25px;
  padding: 5px 20px 5px 20px;
  background-color: #efefef;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  width: 80%;
}

.badge-pox-paq i {
  color: #25f563;
}

.cards {
  position: relative;
}

.cards__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
}

.card-paquetes {
  --flow-space: 0.5em;
  --hsl: var(--hue), var(--saturation), var(--lightness);
  position: relative;
  flex: 1 1 14rem;
  padding: 1.5em 2.5em;
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-items: start;
  gap: 1.25em;
  color: #2b2b2b;
  background: rgb(249, 249, 249);
  border: none;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.card-paquetes:nth-child(1) {
  --hue: 140;
  --saturation: 82.26%;
  --lightness: 51.37%;
}

.card-paquetes:nth-child(2) {
  --hue: 570;
  --saturation: 95.9%;
  --lightness: 51.37%;
}

.card-paquetes:nth-child(3) {
  --hue: 385.62;
  --saturation: 100%;
  --lightness: 48.04%;
}

.card-paquetes:nth-child(4) {
  --hue: 288.69;
  --saturation: 100%;
  --lightness: 48.04%;
}

.card__bullets {
  line-height: 1.4;
  font-size: 12px;
  text-align: left;
}

.card__bullets li::before {
  display: inline-block;
  content: url("");
  transform: translatey(0.25ch);
  margin-right: 1ch;
}

.card__titulo {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #161616;
  z-index: 1;
}

.card__precio {
  text-align: center;
  font-size: 1.75em;
  font-weight: 700;
  z-index: 1;
}

.ceros-precio {
  font-size: 12px;
}

.card__h3 {
  z-index: 1;
  text-align: center;
  color: #0f0f0f;
}

.card__header {
  z-index: 1;
  text-align: center;
  position: relative;
  margin-top: 10px;
}

.card__header h6 {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.card__header h4 {
  font-size: 20px;
  margin-top: -10px;
  font-weight: 400;
  text-transform: uppercase;
}

.card__header h1 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -10px;
}

.card__descripcion {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  line-height: 14px;
  background-color: #fafafa;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px -9px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.icon-paq {
  width: 180px;
  position: absolute;
  top: 10px;
  left: 5px;
  opacity: 0.3;
  z-index: -1;
  max-height: 150px;
}

/*----------------*/
.card__color01 {
  position: absolute;
  z-index: 0;
  min-height: 200px;
  width: 100%;
  background: rgb(249, 249, 249);
  background: linear-gradient(0deg, rgb(249, 249, 249) 14%, rgb(2, 200, 101) 100%);
}

.card__color02 {
  position: absolute;
  z-index: 0;
  min-height: 200px;
  width: 100%;
  background: rgb(38, 38, 38);
  background: linear-gradient(0deg, rgb(249, 249, 249) 14%, rgb(4, 128, 216) 100%);
}

.card__color03 {
  position: absolute;
  z-index: 0;
  min-height: 200px;
  width: 100%;
  background: rgb(38, 38, 38);
  background: linear-gradient(0deg, rgb(249, 249, 249) 14%, rgb(255, 90, 1) 100%);
}

.card__color04 {
  position: absolute;
  z-index: 0;
  min-height: 200px;
  width: 100%;
  background: rgb(38, 38, 38);
  background: linear-gradient(0deg, rgb(249, 249, 249) 14%, rgb(187, 10, 231) 100%);
}

/*----------------*/
.flow>*+* {
  margin-top: var(--flow-space, 1.25em);
}

.cta {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #797979;
  padding: 0.7em;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(25rem 25rem at var(--x) var(--y), #ffffff 1%, transparent 50%);
  mask: radial-gradient(25rem 25rem at var(--x) var(--y), #ffffff 1%, transparent 50%);
  transition: 400ms -webkit-mask ease;
  transition: 400ms mask ease;
  transition: 400ms mask ease, 400ms -webkit-mask ease;
  will-change: mask;
}

.overlay .card-paquetes {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
}

.overlay .cta {
  display: block;
  grid-row: -1;
  width: 100%;
  background-color: hsl(var(--hsl));
  box-shadow: 0 0 0 1px hsl(var(--hsl));
}

:not(.overlay)>.card-paquetes {
  transition: 400ms background ease;
  will-change: background;
}

:not(.overlay)>.card:hover {
  --lightness: 95%;
  background: rgb(249, 249, 249);
  color: #212121;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.mas-vendido {
  width: 300px;
  position: absolute;
  transform: rotate(45deg);
  right: -100px;
  top: 30px;
  box-shadow: -1px 3px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: -1px 3px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -1px 3px 5px 0px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/*=============================================================================== TODO EN UN SOLO LUGAR ===========================================================================================================*/
.clientes{
  padding: 30px 0px;
  background: #6e6e6e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clientes p{
  margin-top: 0px;
  margin-bottom: 10px;
  color: #ebebeb;
  opacity: .7;
}
.clientes-img{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 60px;
  opacity: .7;
}

.clientes-img img{
 height: 30px;
}






.cont-todo-lugar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ola-01 {
  position: absolute;
  bottom: -110px;
  pointer-events: none;
}

.bg-cont-todo-lugar {
  position: relative;
  background-image: url(../img2/Recurso-2_1@2000x-8.png);
  width: 100%;
  color: white;
  padding: 60px 0px 60px;
}

.cont-todo-lugar01 {
  display: flex;
  flex-direction: column;
}

.card-todo-lugar {
  width: 80%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px rgba(231, 231, 231, 0.2901960784);
}

.card-todo-lugar h3 {
  font-size: 25px;
  font-weight: 300;
  color: #fff;
}

.card-todo-lugar p {
  font-size: 13px;
  color: #fff;
}

.tablet {
  width: 650px;
  height: auto;
  display: flex;
  justify-content: center;
  align-self: center;
}

/*========================================================================================================================================================================================================*/
.contenedor-info-paq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contenedor-info-paq h6 {
  margin: 10px;
  font-size: 15px;
  color: #3a3a3a;
}

.boton-paquete {
  background-color: #4d4d4d;
  color: #e2e2e2;
  font-weight: 700;
  border: none;
  padding: 10px 20px 10px 20px;
  border-radius: 30px;
  opacity: 0.8;
  transition: 0.3s;
}

.boton-paquete:hover {
  opacity: 1;
  cursor: pointer;
  background-color: #ff6801;
}

/*===========================================================================================================================================================*/
.contenedor-app {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 400px;
}

.app-mokup {
  width: 450px;
}

.subtitulos-app {
  margin-top: 20px;
  color: #454545;
}

.texto-app {
  color: #353535;
}

.circulitos {
  min-width: 50px;
  min-height: 50px;
  max-width: 50px;
  max-height: 50px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding: 5px;
  border-radius: 50%;
  background: rgb(255, 104, 1);
  background: linear-gradient(0deg, rgb(255, 104, 1) 0%, rgb(255, 173, 1) 100%);
}

.iconos-app {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  bottom: 50px;
  padding-top: 20px;
}

.iconos-app img {
  justify-content: space-between;
  width: 100px;
  margin: auto;
}

.contenedor-comentarios {
  min-height: 400px;
  display: flex;
  flex-direction: row;
}

.card-comentarios {
  background: rgb(255, 104, 1);
  background: linear-gradient(0deg, rgb(255, 104, 1) 0%, rgb(255, 173, 1) 100%);
  color: #000;
  padding: 30px;
  border-radius: 30px;
  width: 50%;
  margin: 20px;
  box-shadow: 6px 4px 5px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 6px 4px 5px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 6px 4px 5px 0px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  height: 350px;
}

.card-comentarios img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: solid 5px #fff;
  padding: 5px;
  justify-content: center;
  margin: auto;
}

.card-comentarios h3 {
  font-size: 30px;
  text-align: center;
  color: #fff;
}

.card-comentarios p {
  color: #fff;
  font-size: 16px;
  font-weight: 400px;
}
.banner01{
  background-image: url(../img2/banner01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 60px;
  margin: 60px 0;
}
.banner01 h3{
  width: 600px;
  background: rgb(255, 220, 1);
  background: linear-gradient(309deg, rgb(255, 220, 1) 0%, rgb(255, 104, 1) 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 70px;
  line-height: 70px;
}
.banner01 p{
  color: #ffff;
   max-width: 600px;
}

/* ========================================================= FOOTER ================================================*/
.footer {
  background-color: #222222;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
}

.cont-mapa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cont-mapa p {
  color: #e2e2e2;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.mapa {
  width: 200px;
  height: 200px;
  padding: 20px;
  border-radius: 40px;
}

.contenedor-footer {
  display: flex;
  flex-direction: row;
  padding: 30px;
  border-bottom: none;
  padding-bottom: 0px;
  justify-content: space-between;
}

.contenedor-footer a {
  color: #e2e2e2;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s;
  text-decoration: underline;
}

.contenedor-footer div:nth-child(1) {
  width: 60%;
}

.contenedor-footer a:hover {
  color: #ff6801;
  font-weight: 700;
}

.contenedor-footer h3 {
  font-size: 20px;
  margin-right: 20px;
  font-weight: 800;
  color: #FF6801;
}

.contenedor-footer p {
  color: #e2e2e2;
  font-size: 12px;
  font-weight: 600;
  padding: 0px 10px;
}

.contenedor-footer-marcas {
  margin: auto;
  width: 80%;
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  align-content: center;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 10px;
}

.logos-footer-marcas {
  margin: auto;
  display: flex;
  height: 20px;
}

.footer-iA {
  background-color: #1d1d1d;
}

.footer-iA h6 {
  text-align: center;
  color: #989898;
  font-size: 15px;
  padding: 20px 0px 0px;
}
.footer-iA p{
  color: #989898;;
  text-align: center;
  margin-top: 0px;
  font-size: 12px;
  padding-bottom: 10px;
}

.img-fxt{
  width: 180px;
  opacity: .6;
  
}
.img-fxt:hover{
  opacity: 1;
  cursor: pointer;
}
.cont-fxt{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: #fff;
  font-size: 12px;
  margin-bottom: 30px;
  margin-top: 30px;
  opacity: .6;

}

/*=====================================================================================================================================================*/
.alerta-precaucion {
  background-color: var(--falcon-card-bg);
  border-radius: 25px;
  padding: 10px;
  border: none;
  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.15);
}

/* ======================================================================================================================================= */
.container-carrucel-01 {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
}

.slide-container {
  margin: 0 30px;
  overflow: hidden;
}

.card-carrucel-01 {
  background: #e60e0e;
  border-radius: 8px;
}

.card-carrucel-01 .image-box {
  height: 200px;
}

.card-carrucel-01 .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.card-carrucel-01 .profile-details {
  display: flex;
  align-items: center;
  -moz-column-gap: 12px;
  column-gap: 12px;
  padding: 15px;
}

.card-carrucel-01 .profile-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.profile-details .name {
  font-size: 15px;
  font-weight: 500;
}

.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {
  color: #000;
  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
}

/*============================= PARTICULAS =========================*/
#particles-js {
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

/* ================== TYPING ================ */
.contenedor-palabras {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.palabras-cambiantes {
  font-size: 22px;
  font-weight: 500;
  margin-left: 5px;
  text-decoration: underline;
}

.wave01 {
  position: absolute;
  margin-bottom: 10px;
  left: 0px;
}

/*=============== STEP ======================*/
.steps-container {
  width: 100%;
  margin: auto;
  text-align: center;
  padding-top: 70px;
}

.step-cont {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.step {
  width: 150px;
  height: 150px;
  display: inline-block;
  padding: 20px;
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(179, 179, 179, 0.9333333333);
  border: solid 5px transparent;
  justify-content: space-between;
}

.step:hover {
  background-color: rgba(212, 212, 212, 0.9333333333);
  transition: 0.3s;
  transform: scale(1.05);
}

.step:active {
  transition: 0.3s;
  transform: scale(0.95);
}

.step img {
  display: block;
  margin: 0 auto 10px;
  /* Centrar la imagen */
}

.content {
  display: none;
  padding: 20px;
  background-color: rgba(189, 189, 189, 0.9333333333);
  border-radius: 25px;
  border: none;
  margin-top: 20px;
}

.content.active {
  display: block;
}

.selected {
  border: 5px solid #FF6801;
}

.barra-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 80px;
  height: 2px;
  background-color: #ff6801;
}

/* ========================================== contenedor-administra-con-inteligencia ===================================================*/
.contenedor-administra-con-inteligencia {
  background: rgb(255, 104, 1);
  background: linear-gradient(43deg, rgb(255, 104, 1) 0%, rgb(255, 195, 1) 100%);
  height: 40vh;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.contenedor-administra-con-inteligencia p {
  width: 70%;
  font-weight: 400;
}

.contenedor-administra-con-inteligencia h2 {
  font-size: 40px;
}

.contenedor-administra-con-inteligencia img {
  width: 15%;
  margin-top: 20px;
}

.contenedor-circulitos-cart {
  width: 100%;
  bottom: 0px;
  z-index: 1;
}

.contenedor-circulitos-cart img:nth-child(1) {
  position: absolute;
  width: 120px;
  left: 2%;
  top: 50%;
  z-index: 1;
}

.contenedor-circulitos-cart img:nth-child(2) {
  position: absolute;
  width: 250px;
  left: 10%;
  top: 70%;
  z-index: 1;
}

.contenedor-circulitos-cart img:nth-child(3) {
  position: absolute;
  width: 90px;
  left: 25%;
  top: 75%;
}

.contenedor-circulitos-cart img:nth-child(4) {
  position: absolute;
  width: 90px;
  right: 25%;
  top: 75%;
}

.contenedor-circulitos-cart img:nth-child(5) {
  position: absolute;
  width: 250px;
  right: 10%;
  top: 60%;
}

.contenedor-circulitos-cart img:nth-child(6) {
  position: absolute;
  width: 120px;
  right: 2%;
  top: 50%;
}


/*-----------------------------------------------------------------------------*/

.contenedor-circulitos-cart01 {
  width: 100%;
  bottom: 0px;
}

.contenedor-circulitos-cart01 img:nth-child(1) {
  position: absolute;
  width: 190px;
  left: 1%;
  top: 10%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(2) {
  position: absolute;
  width: 190px;
  left: 2%;
  top: 80%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(3) {
  position: absolute;
  width: 50px;
  left: 8%;
  top: 75%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(4) {
  position: absolute;
  width: 90px;
  right: 25%;
  top: 75%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(5) {
  position: absolute;
  width: 250px;
  right: 10%;
  top: 70%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(6) {
  position: absolute;
  width: 120px;
  right: 2%;
  top: 50%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(7) {
  position: absolute;
  width: 40px;
  right: 9%;
  top: 50%;
  z-index: 1;
}


.contenedor-circulitos-cart01 img:nth-child(8) {
  position: absolute;
  width: 190px;
  right: 9%;
  top: 10%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(9) {
  position: absolute;
  width: 80px;
  left: 2%;
  top: 70%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(10) {
  position: absolute;
  width: 70px;
  right: 2%;
  top: 70%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(11) {
  position: absolute;
  width: 80px;
  right: 10%;
  top: 40%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(12) {
  position: absolute;
  width: 200px;
  left: 2%;
  top: 10%;
  z-index: 1;
}

.contenedor-circulitos-cart01 img:nth-child(13) {
  position: absolute;
  width: 190px;
  right: 2%;
  top: 1%;
  z-index: 1;
}

@keyframes flotar {

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

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

/* Aplicación de la animación a un elemento con la clase "flotante" */
.flotante {
  animation: flotar 3s ease-in-out infinite;
}

@keyframes flotar01 {

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

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

/* Aplicación de la animación a un elemento con la clase "flotante" */
.flotante01 {
  animation: flotar01 4s ease-in-out infinite;
}

@keyframes flotar02 {

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

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

/* Aplicación de la animación a un elemento con la clase "flotante" */
.flotante02 {
  animation: flotar02 5s ease-in-out infinite;
}

/*===================================================== CARRUCEL =============================================*/
.wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;
  margin: auto;
}

.wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  z-index: 3;
  margin: auto;
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}

.wrapper i:first-child {
  left: -22px;
}

.wrapper i:last-child {
  right: -22px;
}

.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.3333333333% - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card-carrucel {
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.carousel :where(.card-carrucel, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .card-carrucel {
  scroll-snap-align: start;
  height: 350px;
  list-style: none;
  background: rgba(238, 238, 238, 0.9333333333);
  color: #1d1d1d;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 30px;
}

.carousel .card-carrucel .img {
  height: 148px;
  width: 148px;
  border-radius: 50%;
}

.card-carrucel .img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 6px solid #ffffff;
  padding: 5px;
}

.carousel .card-carrucel h2 {
  font-weight: 600;
  font-size: 18px;
}

.carousel .card-carrucel span {
  margin: 10px 0 5px;
  padding: 0px 20px 0px 20px;
  color: #1d1d1d;
  font-size: 12px;
}

@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc(50% - 9px);
  }

  .card__header h1 {
    font-size: 25px;
  }

  .lleva {
    width: 80%;
  }

}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }

  .slider-nombres-h1 {
    font-size: 2px;
  }

  .card__header h1 {
    font-size: 20px;
  }



  .tablet {
    width: 90%;
  }

  .titulos-03 {
    font-size: 40px;
  }

  .titulos-04 {
    line-height: 42px;
  }

}

.contenedor-redes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.contenedor-redes a {
  font-size: 25px;
}

.contenedor-soporte {
  position: fixed;
  border-radius: 25px;
  width: 15%;
  height: 90px;
  z-index: 999;
  bottom: 40px;
  right: 30px;
  background-color: rgba(0, 0, 0, 0.5568627451);
  display: flex;
  flex-direction: row;
  padding: 15px;
  justify-content: center;
  align-items: center;
}

.contenedor-soporte img {
  height: 80%;
}

.contedor-soporte-text {
  flex-direction: column;
  color: #fff;
  margin-left: 10px;
}

.contedor-soporte-text h2 {
  font-size: 18px;
}

.contedor-soporte-text h4 {
  font-size: 14px;
}

/* ========================================================== TOOLTIP =========================================*/
.tooltip-container {
  position: relative;
  display: inline-block;
  transition: 0.9s;
  z-index: 9999;
}

.tooltip-content {
  transition: 0.3s;
  display: none;
  position: absolute;
  background-color: #FF6801;
  color: #fff;
  padding: 5px 15px 5px 15px;
  border-radius: 25px 5px 25px 25px;
  left: -210px;
  font-size: 18px;
  z-index: 999999;
}

.tooltip-container:hover .tooltip-content {
  display: block;
}

.tooltip-trigger {
  cursor: pointer;
}

/*======================================================================== STEPS ============================================================*/
.container-step .steps {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.steps .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  color: #999;
  font-size: 22px;
  font-weight: 500;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #e0e0e0;
  transition: all 200ms ease;
  transition-delay: 0s;
}

.steps .circle.active {
  transition-delay: 100ms;
  border-color: #ff6801;
  color: #ff6801;
}

.steps .progress-bar {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #e0e0e0;
  z-index: -1;
}

.progress-bar .indicator {
  position: absolute;
  height: 100%;
  width: 0%;
  background: #4070f4;
  transition: all 300ms ease;
}

.container-step .buttons {
  display: flex;
  gap: 20px;
}

.buttons button {
  padding: 8px 25px;
  background: #4070f4;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: all 200ms linear;
}

.buttons button:active {
  transform: scale(0.97);
}

.buttons button:disabled {
  background: #87a5f8;
  cursor: not-allowed;
}

.cont-degradado {
  position: relative;
}

.cont-degradado img {
  position: absolute;
  width: 100%;
  height: 200px;
}

.card-08 {
  background-color: transparent;
  padding: 30px;
  position: relative;
  border-radius: 30px;
  z-index: 1;
}

.card-08 h1 {
  z-index: 3;
  font-size: 35px;
  line-height: 43px;
  margin-top: 10px;
  text-align: center;
}

.card-08 b {
  font-weight: 800;
  color: #ff6801;
}

.iso-3d {
  pointer-events: none;
  width: 300px;
  position: absolute;
  right: -150px;
  bottom: -60px;
  z-index: 10;
}

/*=================================================================================================================*/
#container-wrapper {
  margin-top: 20px;
  z-index: 2;
}

.container {
  display: none;
  top: 50px;
  left: 0;
  right: 0;
  margin: 0 0px 30px 0px;
  padding: 20px;
  text-align: center;
  color: white;
  z-index: 2;
}

#container1 {
  background-color: #f2f2f2;
  border-radius: 30px;
  position: relative;
  box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff;
}

#container2 {
  background-color: #f2f2f2;
  border-radius: 30px;
  position: relative;
  box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff;
}

#container3 {
  background-color: #f2f2f2;
  border-radius: 30px;
  position: relative;
  box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff;
}

#container4 {
  background-color: #f2f2f2;
  border-radius: 30px;
  position: relative;
  box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff;
}

#container5 {
  background-color: #f2f2f2;
  border-radius: 30px;
  position: relative;
  box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff;
}

#container6 {
  background-color: #f2f2f2;
  border-radius: 30px;
  position: relative;
  box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff;
}

#container7 {
  background-color: #f2f2f2;
  border-radius: 30px;
  position: relative;
  box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff;
}

#container8 {
  background-color: #f2f2f2;
  border-radius: 30px;
  position: relative;
  box-shadow: 2px 2px 4px #bebebe, -2px -2px 4px #ffffff;
}

.contenedor-botones-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center; /* Opcional: para centrar los botones en la fila */
  gap: 15px; /* Opcional/**/
  flex-wrap: wrap;
}

.puntitos03 {
  width: 100px;
  position: absolute;
  z-index: 1;
}

.button-wrapper {
  position: relative;
  display: inline-block;
  z-index: 3;
  width: 60px;
  height: 60px;
  padding: 10px;
  margin: auto;
  border: none;
  font-size: 22px;
  cursor: pointer;
  border-radius: 15px;
  background-color: #c1c1c1;
  color: #949494;
  transition: 0.3s;
  background: linear-gradient(145deg, #f0f0f0, #cacaca);
  box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #ffffff;
}

.button-wrapper:hover {
  background: linear-gradient(145deg, #cacaca, #f0f0f0);
  box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #ffffff;
}

.tooltip-01 {
  visibility: hidden;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  /* Posiciona el tooltip encima del botón */
  left: 50%;
  margin-left: -60px;
  /* Centra el tooltip horizontalmente */
  opacity: 0;
  transition: opacity 0.3s;
}

.button-wrapper:hover+.tooltip-01 {
  visibility: visible;
  opacity: 1;
}

.selected {
  transform: scale(0.5);
  color: #ff7700;
  background-color: rgb(62, 62, 62);
  border: none;
  transform: translateY(0.1em);
  box-shadow: inset 3px 3px 3px #b1b1b1, inset -3px -3px 3px #ffffff;
}

.card-07 {
  display: flex;
  flex-direction: row;
  border-radius: 30px;
  padding: 20px;
  position: relative;
  z-index: 3;
}

.card-07 h2 {
  font-size: 60px;
  color: #2a2a2a;
  line-height: 60px;
  z-index: 3;
}

.img-card-07 {
  width: 600px;
  border-radius: 10px;
}

.card-07 p {
  text-align: left;
  margin-left: 30px;
  color: #0f0f0f;
}

.card-07-lista {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
}

.card-07-lista i {
  color: #ff6801;
  font-size: 12px;
}

.circulo-02 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  bottom: -10px;
  background-color: #ff6801;
}

.elementos-lineas {
  position: absolute;
  z-index: -1;
  width: 100%;
  margin: auto;
  display: flex;
  opacity: 0.4;
  top: 0px;
}

.cbh-phone {
  display: block;
  position: fixed;
  left: 0px;
  bottom: -55px;
  visibility: hidden;
  background-color: transparent;
  width: 200px;
  height: 200px;
  cursor: pointer;
  z-index: 999;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
}

.cbh-phone.cbh-show {
  visibility: visible;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

.cbh-phone.cbh-static1 {
  opacity: 0.6;
}

.cbh-phone.cbh-hover1 {
  opacity: 1;
}

.cbh-ph-circle {
  width: 110px;
  height: 110px;
  top: 40px;
  left: 40px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  animation: cbh-circle-anim 1.2s infinite ease-in-out;
  transition: all 0.5s;
}

.cbh-phone.cbh-active .cbh-ph-circle1 {
  animation: cbh-circle-anim 1.1s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-circle {
  animation: cbh-circle-anim 2.2s infinite ease-in-out !important;
}

.cbh-phone.cbh-hover .cbh-ph-circle {
  border-color: rgb(0, 175, 242);
  opacity: 0.5;
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle {
  border-color: rgb(117, 235, 80);
  opacity: 0.5;
}

.cbh-phone.cbh-green .cbh-ph-circle {
  border-color: rgb(0, 175, 242);
  opacity: 0.5;
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle {
  border-color: rgb(204, 204, 204);
  opacity: 0.5;
}

.cbh-phone.cbh-gray .cbh-ph-circle {
  border-color: rgb(117, 235, 80);
  opacity: 0.5;
}

.cbh-ph-circle-fill {
  width: 74px;
  height: 74px;
  top: 58px;
  left: 58px;
  position: absolute;
  background-color: #000;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 0.1;
  animation: cbh-circle-fill-anim 2.3s infinite ease-in-out;
  transition: all 0.5s;
}

.cbh-phone.cbh-active .cbh-ph-circle-fill {
  animation: cbh-circle-fill-anim 1.7s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-circle-fill {
  animation: cbh-circle-fill-anim 2.3s infinite ease-in-out !important;
  opacity: 0 !important;
}

.cbh-phone.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(0, 175, 242, 0.5);
  opacity: 0.75 !important;
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(117, 235, 80, 0.5);
  opacity: 0.75 !important;
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
  background-color: rgba(0, 175, 242, 0.5);
  opacity: 0.75 !important;
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-circle-fill {
  background-color: rgba(204, 204, 204, 0.5);
  opacity: 0.75 !important;
}

.cbh-phone.cbh-gray .cbh-ph-circle-fill {
  background-color: rgba(117, 235, 80, 0.5);
  opacity: 1 !important;
}

.cbh-ph-img-circle1 {
  width: 50px;
  height: 50px;
  top: 70px;
  left: 70px;
  position: absolute;
  background-image: url(../img2/whats-icon.svg);
  background-size: 40px 40px;
  background-color: rgba(30, 30, 30, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 1;
  animation: cbh-circle-img-anim 1s infinite ease-in-out;
}

.cbh-phone.cbh-active .cbh-ph-img-circle1 {
  animation: cbh-circle-img-anim 1s infinite ease-in-out !important;
}

.cbh-phone.cbh-static .cbh-ph-img-circle1 {
  animation: cbh-circle-img-anim 0s infinite ease-in-out !important;
}

.cbh-phone.cbh-hover .cbh-ph-img-circle1 {
  background-color: #40f5bb;
}

.cbh-phone.cbh-green.cbh-hover .cbh-ph-img-circle1:hover {
  background-color: #40f5bb;
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: #40f5bb;
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: #40f5bb;
}

.cbh-phone.cbh-gray.cbh-hover .cbh-ph-img-circle1 {
  background-color: rgba #40f5bb;
}

.cbh-phone.cbh-gray .cbh-ph-img-circle1 {
  background-color: #40f5bb;
}


/*======================================================================================================*/









.newSIA-collaboration {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.newSIA-collaboration h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0f0f0f;
}

.newSIA-collaboration p {
  color: #d4d4d4;
  margin-bottom: 25px;
}

.newSIA-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 18px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.newSIA-card {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  background: #ebebeb;
box-shadow:  5px 5px 7px #d1d1d1,
             -5px -5px 7px #ffffff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  border: none;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.newSIA-card:nth-child(1){
  background: linear-gradient(145deg, #fff7e2, #fbfbfb);
}
.newSIA-card:nth-child(2){
  background: linear-gradient(145deg, #f7ffe2, #fbfbfb);
}
.newSIA-card:nth-child(3){
  background: linear-gradient(145deg, #e2fff5, #fbfbfb);
}
.newSIA-card:nth-child(4){
  background: linear-gradient(145deg, #e2f7ff, #fbfbfb);
}
.newSIA-card:nth-child(5){
  background: linear-gradient(145deg, #e2e4ff, #fbfbfb);
}
.newSIA-card:nth-child(6){
  background: linear-gradient(145deg, #f3e2ff, #fbfbfb);
}
.newSIA-card:nth-child(7){
  background: linear-gradient(145deg, #ffe2e2, #fbfbfb);
}
.newSIA-card:nth-child(8){
  background: linear-gradient(145deg, #fff7e2, #fbfbfb);
}
.newSIA-card:nth-child(9){
  background: linear-gradient(145deg, #f7ffe2, #fbfbfb);
}
.newSIA-card:nth-child(10){
  background: linear-gradient(145deg, #e2fff5, #fbfbfb);
}
.newSIA-card:nth-child(11){
  background: linear-gradient(145deg, #e2f7ff, #fbfbfb);
}
.newSIA-card:nth-child(12){
  background: linear-gradient(145deg, #e2e4ff, #fbfbfb);
}
.newSIA-card:nth-child(13){
  background: linear-gradient(145deg, #f3e2ff, #fbfbfb);
}
.newSIA-card:nth-child(14){
  background: linear-gradient(145deg, #ffe2e2, #fbfbfb);
}
.newSIA-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  border-radius: 14px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.199),
      transparent);
}

.newSIA-card::after {
  width: 340px;
  height: 360px;
  position: relative;
  overflow: hidden;
}

.newSIA-card:hover {
  transform: translateY(4px);

box-shadow: inset 5px 5px 6px #c3c3c379,
            inset -5px -5px 6px #fdfdfd;
}

.newSIA-card-icon {
  font-size: 28px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.newSIA-card-icon i{
  color: #161616;
}

.newSIA-card h3 {
  font-size: 2rem;

  color: #202020;
}

.newSIA-card p {
  font-size: 0.85rem;
  color: #202020;
  line-height: 1.4;
}

.newSIA-show-more {
  text-align: center;
  margin-top: 25px;
  cursor: pointer;
  color: #ff6801;
  font-weight: 600;
  transition: color 0.2s ease;
}

.newSIA-show-more:hover {
  color: #ff6801;
}

.newSIA-hidden {
  display: none;
}

/* Animación suave */
.newSIA-fade-in {
  animation: newSIAfadeIn 0.4s ease forwards;
}

@keyframes newSIAfadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 600px) {
  .newSIA-collaboration h2 {
    font-size: 1.4rem;
  }

  .newSIA-card {
    padding: 18px;
  }
}

























/*==================================================================================================*/
@keyframes cbh-circle-anim {
  0% {
    transform: rotate(0deg) scale(0.5) skew(1deg);
    opacity: 0.1;
  }

  30% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.5;
  }

  100% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.1;
  }
}

@keyframes cbh-circle-fill-anim {
  0% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }

  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
    opacity: 0.2;
  }

  100% {
    transform: rotate(0deg) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}

@keyframes cbh-circle-img-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  100%,
  50% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
}

.cbh-phone.cbh-green .cbh-ph-circle {
  border-color: #40f5bb;
}

.cbh-phone.cbh-green .cbh-ph-circle-fill {
  background-color: #40f5bb;
}

.cbh-phone.cbh-green .cbh-ph-img-circle1 {
  background-color: #40f5bb;
}

.kmacb__manager-border {
  position: absolute;
  width: 75px;
  height: 75px;
  top: 50%;
  left: 50%;
  margin-top: -39.5px;
  margin-left: -39.5px;
  border-radius: 100%;
  border: 2px solid #ffe787;
  animation: kmacb__manager-border-anim 1.5s ease-in-out 0.5s infinite;
  opacity: 0.8;
  transform-origin: center;
}

.kmacb__manager-fill {
  background: #52aff7 center bottom no-repeat;
  position: absolute;
  width: 75px;
  height: 75px;
  top: 50%;
  left: 50%;
  margin-top: -37.5px;
  margin-left: -37.5px;
  border-radius: 100%;
  opacity: 0.5;
  animation: kmacb__manager-fill-anim 1.5s ease-in-out infinite;
  transform-origin: center;
}

.kmacb__manager-circle {
  background: #52aff7;
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  border-radius: 100%;
}

.vm {
  text-align: left;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  align-items: flex-start;
  justify-content: left;
  justify-items: left;
  text-decoration: none;
}

.vm:hover {
  text-decoration: none;
  color: #ff6801;
}

.ver-mas {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.ver-mas:hover {
  color: #ff6801;
}

.lineas-footer {
  position: absolute;
  width: 100%;
  top: -100px;
  z-index: 1;
}

/*================================================================================== LOGIN ======================================================== */
.header-login {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, hsla(0, 100%, 0%, 0.7), hsla(0, 45%, 0%, 0.6)), url(../img2/login-bg.jpg);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

/*=============================================================================== RESPONSIVE 900PX ===============================================================================*/
@media screen and (max-width: 1300px) {
  .menu-btn {
    display: flex;
  }
 

  .slider-nombres-h1 {
    font-size: 2px;
  }

  .container__menu {
    height: auto;
    padding: 10px;
    z-index: 10;
  }

  .logo img {
    width: 200px;
    margin-left: 20px;
  }

  .bot-asomarse {
    height: 80%;
    bottom: 0px;
  }

  .menu nav {
    position: fixed;
    top: 0;
    right: -350px;
    background: rgba(0, 0, 0, 0.4352941176);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 350px;
    height: 100vh;
    padding: 40px;
    z-index: 1;
    transition: all 300ms;
  }

  .btn-crear-cuenta {
    font-size: 10px;
  }

  .menu i {
    font-size: 12px;
  }

  .menu ul {
    flex-direction: column;
    margin: auto;
    text-align: center;
  }

  .btn-ingresar {
    margin: 0px;
  }

  .menu ul li {
    margin-top: 30px;
    margin-left: 0;
  }

  .menu ul li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 100;
  }

  #selected {
    background: none;
    padding: 0px;
    border-radius: none;
    color: #F6615D;
  }

  .menu nav img {
    display: block;
    width: 150px;
    margin: auto;
  }

  #back_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5490196078);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: none;
  }

  .menu #btn_menu-H-iA {
    margin-right: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(216, 216, 216, 0.75);
    font-size: 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 300ms;
    box-shadow: 0px 0px 45px 8px rgba(0, 0, 0, 0.1);
  }

  .menu #btn_menu-H-iA:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .bars__menu {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(6);
    cursor: pointer;
  }

  .bars__menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #9A00BF;
    margin-top: 6px;
    transform-origin: 0px 100%;
    transition: all 300ms;
  }

  .activeline1__bars-menu {
    transform: rotate(45deg) translate(-2px, 1px);
  }

  .activeline2__bars-menu {
    opacity: 0;
    margin-left: -30px;
  }

  .activeline3__bars-menu {
    transform: rotate(-45deg) translate(-4px, 2px);
  }

  .menu {
    right: 0;
  }

  .textos-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 410px;
    margin-left: 0px;
  }

  .textos-header h1 {
    font-size: 50px;
    line-height: 50px;
    width: 100%;
    text-align: center;
  }

  .textos-header h2 {
    font-size: 15px;
    margin-top: 10px;
    letter-spacing: 0px;
    text-align: center;
    width: 80%;
    text-shadow: -3px 2px 5px rgba(0,0,0,0.6);
  }

  .textos-header video {
    width: 500px;
    position: absolute;
    bottom: calc(50% - 300px);
    left: calc(50% - 250px);
  }

  .titulos-01 {
    line-height: 60px;
    margin-bottom: 10px;
  }

  .titulos-03 {
    line-height: 60px;
    margin-bottom: 10px;
  }

  .ola-01 {
    bottom: -10px;
    border: none;
  }

  .cont-degradado img {
    top: -10px;
  }

  .btn-inicio {
    width: 100%;
    font-size: 20px;
  }

  .card__descripcion {
    font-size: 13px;
    line-height: 15px;
  }

  .mas-vendido {
    width: 200px;
    right: -50px;
    top: 30px;
  }

  .card__precio {
    font-size: 30px;
  }

  .ceros-precio {
    font-size: 20px;
  }

  .card__color04 {
    z-index: 0;
  }

  .card__bullets {
    z-index: 3;
  }

  .card__bullets li {
    font-size: 12px;
    z-index: 3;
  }

  .card__titulo {
    line-height: 22px;
  }

  .cont-todo-lugar {
    display: flex;
    flex-direction: column;
  }

  .card-todo-lugar {
    width: 100%;
    text-align: center;
  }

  .card-todo-lugar h3 {
    font-size: 25px;
  }

  .card-todo-lugar p {
    font-size: 15px;
  }

  .card-07 {
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    padding: 20px;
    position: relative;
    z-index: 3;
  }

  .card-07 h2 {
    margin-top: 30px;
    font-size: 30px;
  }

  .img-card-07 {
    width: 100%;
    display: flex;
    align-self: center;
  }

  .contenedor-administra-con-inteligencia {
    height: auto;
  }

  .contenedor-administra-con-inteligencia h2 {
    width: 80%;
    font-size: 40px;
    line-height: 40px;
    padding: 20px 0px;
  }

  .contenedor-administra-con-inteligencia p {
    margin-top: 0px;
  }

  .contenedor-administra-con-inteligencia img {
    width: 50%;
    padding: 40px 0;
  }

  .contenedor-circulitos-cart img:nth-child(1) {
    position: absolute;
    width: 60px;
    left: 2%;
    top: 50%;
  }

  .contenedor-circulitos-cart img:nth-child(2) {
    position: absolute;
    width: 80px;
    left: 5%;
    top: 65%;
  }

  .contenedor-circulitos-cart img:nth-child(3) {
    position: absolute;
    width: 60px;
    left: 25%;
    top: 85%;
  }

  .contenedor-circulitos-cart img:nth-child(4) {
    position: absolute;
    width: 60px;
    right: 25%;
    top: 85%;
  }

  .contenedor-circulitos-cart img:nth-child(5) {
    position: absolute;
    width: 60px;
    right: 3%;
    top: 70%;
  }

  .contenedor-circulitos-cart img:nth-child(6) {
    position: absolute;
    width: 60px;
    right: 2%;
    top: 50%;
  }

  .contenedor-app {
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .texto-app {
    text-align: center;
    width: 90%;
  }

  .subtitulos-app {
    text-align: center;
    font-size: 30px;
    line-height: 28px;
    width: auto;
  }
  .subtitulos-app p{
    width: auto;
  }

  .iconos-app {
    margin: auto;
    width: 100%;
  }

  .iconos-app img {
    width: 150px;
    padding: 20px;
  }

  .cbh-phone {
    left: -20px;
    bottom: -30px;
  }

  .footer {
    background-color: #222222;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
  }

  .contenedor-footer {
    display: flex;
    flex-direction: column;
    padding: 30px;
  }

  .contenedor-footer a {
    color: #e2e2e2;
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s;
  }

  .contenedor-footer a:hover {
    color: #ff6801;
    font-weight: 700;
  }

  .contenedor-footer h3 {
    font-size: 20px;
    text-align: center;
    font-weight: 800;
    color: #e9e9e9;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 2px #ff6801;
  }

  .contenedor-footer p {
    color: #e2e2e2;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 2px #ff6801;
  }

  .contenedor-footer div:nth-child(1) {
    width: 100%;
  }

  .contenedor-footer-marcas {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .logos-footer-marcas {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5em;
    height: 40px;
    padding: 10px;
  }

  .footer-iA {
    background-color: #1d1d1d;
    height: auto;
  }

  .footer-iA h6 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #989898;
    font-size: 15px;
    width: 80%;
    margin: auto;
  }

  .contenedor-redes {
    display: flex;
    justify-content: space-around;
    margin: auto;
  }

  .redes-enlace i {
    font-size: 30px;
  }
    .card-07-text h2{
    font-size: 30px;
    line-height: 30px;
  }


}

/*-----------------------------------------------------*/
@media (max-width: 800px) {
  .banner01{
  background-image: url(../img2/banner01-vert.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 0px;
  padding-top: 80px;
  margin: 60px 0;
}
.banner01 h3{
  background: rgb(255, 220, 1);
  background: linear-gradient(309deg, rgb(255, 220, 1) 0%, rgb(255, 104, 1) 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 60px;
  line-height: 60px;
}
.banner01 p{
  color: #ffff;
  padding: 0px 20px 0px 20px;
  margin-top: 30px;
}
}
/*---------------------------------------------------------*/
.slider-nombres-h1 {
  font-size: 15px;
}

.slider-paq {
  margin: auto;
  width: 100%;
  height: 50px;
  background-color: #ababab;
  position: relative;
  border-radius: 25px;
  cursor: pointer;
}

.slider-indicador {
  position: absolute;
  width: 33.33%;
  /* El slider tiene 300px, dividido en 3 secciones */
  height: 50px;
  background-color: #ff6801;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.slider-nombres {
  width: 100%;
  position: absolute;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  z-index: 3;
}

.cont-nombres-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
}

.contenido {
  margin-top: 20px;
  padding: 10px;
}

.etiqueta-contabilidad {
  position: absolute;
  background-color: #079300;
  width: 60px;
  height: 60px;
  color: #fff;
  z-index: 9999;
  padding: 10px;
  border-radius: 0px 0px 20px 0px;
  transition: 0.2s;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
}

.etiqueta-contabilidad:hover {
  transform: scale(1.05);
}

.text-etiqueta-cont {
  width: 100%;
  transform: rotate(90deg);
  position: absolute;
  background-color: #01ff09;
  width: 30px;
  height: 100%;
  color: #fff;
  z-index: 9999;
}

.etiqueta-contabilidad .tooltip {
  visibility: hidden;
  width: 140px;
  background-color: #079300;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
  padding: 5px 0;
  /* Posicionamiento */
  position: absolute;
  z-index: 1;
  top: 100%;
  /* Cambiado de bottom a top para aparecer debajo */
  left: 100%;
  /* Alinear al extremo derecho del elemento padre */
  margin-left: 0px;
  /* Ajuste para que el tooltip se cargue hacia la derecha */
  /* Efectos de aparición */
  opacity: 0;
  transition: opacity 0.3s;
}

.etiqueta-contabilidad:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.etiqueta-contabilidad01 {
  position: absolute;
  background-color: #0149ff;
  width: 60px;
  height: 60px;
  color: #fff;
  z-index: 9999;
  padding: 10px;
  border-radius: 0px 0px 20px 0px;
  transition: 0.2s;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
}

.etiqueta-contabilidad01 .tooltip01 {
  visibility: hidden;
  width: 140px;
  background-color: #0149ff;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  font-size: 12px;
  padding: 5px 0;
  /* Posicionamiento */
  position: absolute;
  z-index: 1;
  top: 100%;
  /* Cambiado de bottom a top para aparecer debajo */
  left: 100%;
  /* Alinear al extremo derecho del elemento padre */
  margin-left: 0px;
  /* Ajuste para que el tooltip se cargue hacia la derecha */
  /* Efectos de aparición */
  opacity: 0;
  transition: opacity 0.3s;
}

.etiqueta-contabilidad01:hover .tooltip01 {
  visibility: visible;
  opacity: 1;
}

.servicio-añadido {
  font-size: 12px;
  font-weight: 500;
  color: #079300;
}

.servicio-añadido01 {
  font-size: 12px;
  font-weight: 500;
  color: #0149ff;
}

/*==================================================================================================*/
.btn-ini {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #797979;
  padding: 0.7em;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-ini:hover {
  background-color: #02a151;
}

.verde {
  color: #02a151;
  font-weight: 700;
}

/*------------------------*/
.btn-emp {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #797979;
  padding: 0.7em;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-emp:hover {
  background-color: #0580d8;
}

.azul {
  color: #0580d8;
  font-weight: 700;
}

/*-------------------------*/
.btn-emp-mas {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #797979;
  padding: 0.7em;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-emp-mas:hover {
  background-color: #fe7418;
}

.naranja01 {
  color: #fe7418;
  font-weight: 700;
}

/*-------------------------*/
.btn-emp-pro {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #797979;
  padding: 0.7em;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-emp-pro:hover {
  background-color: #7000b1;
}

.morado {
  color: #7000b1;
  font-weight: 700;
}

.lleva {
  height: 120px;
  margin: auto;
  margin-top: -30px;
  pointer-events: none;
}

.bot-asomarse {
  position: absolute;
  left: 0px;
}

/*------------------------------*/
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: transparent;

}

.accordion-title {
  background-color: transparent;
  cursor: pointer;
  color: #fff;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: background-color 0.4s ease;
  opacity: .7;

}

.descrip {
  font-size: 14px;

  line-height: 15px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
}

.accordion-title:hover {
  transition: .2s;
  opacity: 1;
}

.accordion-title.active {
  padding-bottom: 0px;
  border-bottom: none;
  opacity: 1;
}

/* Responsive design */
@media (max-width: 600px) {
  .accordion-title {
    font-size: 14px;
    padding: 15px;
  }
  .titulos-01{
    font-size: 40px;
    line-height: 40px;
  }
  .newSIA-grid{
    padding: 0 20px;
  }
  .card-07-text h2{
    font-size: 30px;
    line-height: 30px;
  }
  .contenedor-main{
    padding: 100px 10px 10px 10px;
  }
  .contenedor-main-app{
    padding: 10px 20px 10px 20px;
  }
  .bot-asomarse{
    width: 250px;
    height: auto;
  }
  .clientes-img{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px;
    opacity: .7;
  }
  .clientes-img img{
    height: auto;
    width: 120px;
  }
  .card-08{
    padding: 0px;
  }
  .card-07-lista{
    margin: 0px;
    margin-left: 0px;
    font-size: 15px;
    margin-top: 10px;
  }
  .card-07-lista p{
    margin: 0px;
    margin-left: 0px;
  }
  .card-07{
    padding: 0px;
  }
  .iso-3d{
    display:none;
  }
  .banner01 h3{
    font-size: 30px;
    line-height: 30px;
    width: auto;
  }
  .contenido{
    padding: 0px;
  }
 
}
/*-----------------------------------------------------------------------------------------------------------*/
/*=========================================================================== RESOLUCION 2K =================================================================================*/
/*# sourceMappingURL=estilo.css.map */