@font-face {
  font-family: "Poppins-ExtraLight";
  src: url(../fonts/Poppins-ExtraLight.ttf);
}

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins-ExtraLight";
}

img {
  display: block;
  width: 100%;
}

.main-header {
  padding: 0;
}

.main-header__title {
  text-align: center;
  font-size: 2.5em;
  margin: 10px 0;
  color: #454546;
}

.main-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.main-header__link {
  color: #333;
}

.mostrar {
  opacity: 1;
  visibility: visible;
}

.icono-menu {
  font-size: 1.5em;
  border: 1px solid #454546;
  display: block;
  padding: 5px 10px;
  cursor: pointer;
  margin-right: auto;
}

.main-header__btn {
  display: block;
  padding: 5px 10px;
  color: #454546;
  border: 1px solid #454546;
  text-decoration: none;
}

.main-header__input {
  display: inline;
  padding: 6px;
  width: 90%;
}

.main-search {
  width: 100%;
}

.main {
  padding: 10px 50px;
  min-height: 100vh;
  /* padding-bottom:200px ;   */
}

/* ESTILOS DE SLIDER */
.container-slider {
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 600%;
  height: 400px;
  margin-left: -100%;
  position: relative;
}

.slider:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
  height: 100%;
}

.slider__section {
  width: 100%;
  position: relative;
}

.slider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: bold;
  font-family: monospace;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}

.slider__btn:hover {
  background: #fff;
}

.slider__btn--left {
  left: 10px;
}

.slider__btn--right {
  right: 10px;
}

.slider__content {
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  z-index: 999;
}

.btn-shop {
  display: block;
  border: 1px solid #f39200;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  width: 250px;
  margin: 20px auto;
}

.btn-shop:hover {
  background: #f39200;
  color: white;
  transition: all 0.8s;
  text-decoration: none;
  border: 1px solid #4b4b4b;
}

.slider__title {
  font-size: 2.2em;
  margin: 0;
}

.slider__txt {
  margin: 5px 0;
}

/* ESTILOS DE PRODUCTOS */
.container-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.product {
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  position: relative;
  flex: 1 1 300px;
  max-width: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
}

@media (max-width: 400px) {
  .product {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.product__img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  cursor: pointer;
}

.product__title {
  text-align: center;
  margin-bottom: 10px;
}

.product__price {
  color: #4d0686;
  font-weight: bold;
  margin-top: auto;
  font-size: 20px;
}

.product_new::before {
  content: "New";
  background: #f39200;
  padding: 3px;
  width: 60px;
  position: absolute;
  top: 15px;
  right: -15px;
  transform: rotate(-90deg);
  color: white;
}

.product__icon {
  display: block;
  margin-top: 10px;
}
.descripcion_cliente{
  font-size: 14px;
  white-space: pre-wrap;
}
.product__icon:hover {
  color: #f39200;
  cursor: pointer;
}

/* .modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 150px;
  left: 0;
  top: 0;
  width: 70%;
  height: 70%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
  margin: auto;
  display: block;
  width: 50%;
  max-width: 450px;
} */

#caption {
  margin: auto;
  display: block;
  width: 50%;
  max-width: 450px;
  text-align: center;
  color: #000000;
  padding: 10px 0;
  height: 50px;
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid rgb(0, 0, 0);
  font-size: 12px;
}

/* Añadir animación */
.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* Botón de cierre */

/* .close {
  position: absolute;
  top: 100px;
  right: 50%;
  color: #000000;
  transition: 0.3s;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
}

.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
} */


.no-scroll {
  overflow: hidden;
}

.container__testimonials {
  text-align: center;
  background: #f7f7f7;
  padding: 20px;
  margin: 20px 0;
}

.testmonial_txt {
  color: #777;
}

.container-editor {
  margin-top: 20px;
}

.editor__item {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.editor__img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.editor__circle {
  width: 200px;
  height: 200px;
  border: 1px solid red;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -205px;
  right: -150px;
  color: red;
  padding: 20px;
  padding-bottom: 70px;
  padding-right: 50px;
  font-size: 1.1em;
  text-align: center;
  font-weight: bold;
  transition: all 0.5s;
}

.editor__item:hover .editor__circle {
  transform: scale(1.2);
  bottom: -90px;
  right: -50px;
}

.editor__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: all 0.5s;
}

.editor__item:hover:before {
  opacity: 1;
}

.container-tips {
  width: 100%;
  margin: 20px 0;
  text-align: center;
  background: #f2f2f2;
}

.tip i {
  font-size: 2em;
  color: #333;
  padding: 20px 0;
}

.tip img {
  text-align: center;
  width: 80%;
  margin: auto;
  margin-top: 12px;
}

.tip .btn-shop {
  color: #333;
}

.section_container-tips h1 {
  text-align: center;
  font-size: 30px;
  color: #642a73;
}

.btn-shop:hover {
  color: white;
}

.main-footer {
  background: #414141;
  color: #ccc;
  padding: 30px 20px;
  bottom: 0;
}

.footer__title {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 10px;
}

.footer__txt {
  color: #ccc;
}

.footer__link {
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 7px 0;
}

.footer__link:hover {
  text-decoration: none;
  color: #f39200;
}

.copy {
  padding-top: 20px;
  border-top: 2px solid #ccc;
  color: #9e9797;
  font-size: 18px;
  justify-content: center;
}

/*busquedas*/
.container_tittle_search {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.main-header__search_input {
  padding: 3px;
  margin-bottom: 4px;
  width: 600px;
}

@media (max-width: 1024px) {
  .main-title {
    font-size: 20px;
    margin-right: -8px;
  }
  .main-header__search_input {
    width: 400px;
    padding: 5px;
  }
}

@media (max-width: 768px) {
  .main-header__search_input {
    width: 290px;
    padding: 5px;
  }
  .main-title {
    font-size: 17px;
    margin-right: -8px;
  }
}

@media (max-width: 590px) {
  .main-title {
    font-size: 25px;
    margin-right: -5px;
  }
  .main-header__search_input {
    width: 250px;
    padding: 1px;
    margin-top:20px;
  }
}

.icono_search {
  font-size: 20px;
  padding-bottom: 6px;
  padding-top: 2px;
  border-radius: 15px;
}

.icono_search:hover {
  cursor: pointer;
  background: #cccaca;
}

.d-none {
  display: none;
}

/*Que dicen los clientes*/

.cards-cliente {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* display: flex;
  justify-content: space-evenly; */
}

.cards-cliente .card-cliente {
  background: #4d0686;
  display: flex;
  width: 95%;
  height: 280px;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 5px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.6);
}

.cards-cliente .card-cliente:first-child {
  margin-bottom: 30px;
}

.cards-cliente .card-cliente img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 50%;
  display: block;
}

.cards-cliente .card-cliente > .contenido-texto-card {
  width: 60%;
  color: #fff;
}

.cards-cliente .card-cliente > .contenido-texto-card {
  font-weight: 300;
  padding-top: 5px;
}

.contenido-texto-card p {
    font-size: 0.9rem; 
    text-align: justify;
    margin: 0; 
}

.contenido-texto-card h5 {
    font-size: 1.5rem; 
}


@media (max-width: 1200px) {
    .contenido-texto-card p {
        font-size: 0.8rem; 
    }

    .contenido-texto-card h5 {
        font-size: 1.2rem;
    }
}
@media (max-width: 1024px) {
    .contenido-texto-card p {
        font-size: 0.7rem; 
    }

    .contenido-texto-card h5 {
        font-size: 1.1rem;
    }
}


@media (max-width: 768px) {
    .contenido-texto-card p {
        font-size: 0.6rem; 
    }

    .contenido-texto-card h5 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contenido-texto-card p {
        font-size: 0.6rem; 
    }

    .contenido-texto-card h5 {
        font-size: 0.9rem;
    }
}




.clientes {
  margin-top: 80px;
  margin-bottom: 80px;
}

.clientes h2 {
  font-size: 30px;
  text-align: center;
  color: #642a73;
}



@media screen and (min-width: 640px) {
  .tip img {
    width: 50%;
  }
}

/*estilos para tables */
@media screen and (min-width: 768px) {
  .slider {
    height: 400px;
  }

  .editor__item {
    height: 250px;
  }

  .container-tips {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .tip img {
    width: 70%;
  }

  .cards-cliente {
    flex-direction: inherit;
    justify-content: space-evenly;
  }

  .cards-cliente .card-cliente {
    width: 45%;
    height: auto;
  }

  .cards-cliente .card-cliente:first-child {
    margin-bottom: 0;
  }

  .main-header__input {
    width: 50%;
  }
}

/*estilos para web*/
@media screen and (min-width: 1024px) {
  .container {
    width: 1000px;
    margin: auto;
  }

  .icono-menu {
    display: none;
  }

  .main-header .container--flex {
    display: flex;
    align-items: center;
  }

  .main-header__container {
    flex-wrap: wrap;
    align-content: flex-start;
  }

  .main-header__container:nth-child(2) {
    order: -1;
    width: 25%;
  }

  .main-header__txt {
    width: 100%;
  }

  .main-header__container:nth-child(3) {
    width: 25%;
    padding: 0 20px;
  }

  .main-header__title {
    width: 150%;
    font-size: 4em;
    margin: 0;
    border-bottom: 1px solid #cec8c8;
  }

  .main-header__link {
    margin-bottom: 20px;
  }

  .main-header__input {
    width: 80%;
  }

  .main-header__btn {
    width: 130px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .main-nav {
    visibility: visible;
    opacity: 1;
    width: 100%;
    margin-top: 20px;
  }

  .container-products {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
  }

  .product__img {
    height: 150px;
    object-fit: contain;
  }

  .container__testimonials {
    font-size: 1.3em;
  }

  .main-footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .copy {
    grid-column-start: span 4;
    text-align: center;
  }

  .tip img {
    width: 50%;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    width: 1200px;
  }

  .main-header__container:nth-child(3) {
    padding-left: 30px;
  }

  .main-header__container:nth-child(2) {
    font-size: 1.3em;
  }

  .slider {
    height: 500px;
    font-size: 1.5em;
  }

  .container-editor {
    display: flex;
    justify-content: space-between;
  }

  .editor__item {
    width: 48%;
  }
}

@media screen and (min-width: 1600px) {
  .container {
    width: 1500px;
  }

  .main-header__container:nth-child(3) {
    padding-left: 30px;
  }

  .main-header__container:nth-child(2) {
    font-size: 1.5em;
  }

  .slider {
    height: 750px;
  }

  .product__img {
    height: 200px;
  }
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.67%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.67%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.67%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.67%;
}

.col-12 {
  width: 100%;
}

[class*="col-"] {
  float: left;
  padding: 1px;
  /* border: 1px solid red; */
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .col-form-label-lg {
    font-size: 0.9rem;
  }
}

/*boton de whasa*/
.btn-wsp {
  position: fixed;
  width: 40px;
  height: 40px;
  line-height: 36px;
  bottom: 40px;
  right: 15px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 300ms ease;
}
.btn-fbk {
  position: fixed;
  width: 40px;
  height: 40px;
  line-height: 36px;
  bottom: 90px;
  right: 15px;
  background: #1877f2;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 300ms ease;
}

.btn-stg {
  position: fixed;
  width: 40px;
  height: 40px;
  line-height: 36px;
  bottom: 140px;
  right: 15px;
  background: #D43089;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 25px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 300ms ease;
}

.btn-wsp:hover,
.btn-fbk:hover,
.btn-stg:hover {
  color: #000;
}
/*estilos del menu*/

.menu__item {
  text-align: center;
  margin: auto;
}

.menu__link {
  padding: 20px;
  position: relative;
  display: block;
}

.nav-link:hover,
.menu__link:hover {
  background: #64646457;
  color: #ffffff;
}

.menu__item .nav-link:hover {
  color: #ffffff;
}

.submenu__item {
  margin-top: 0px;
}

.submenu__link {
  text-decoration: none;
  color: black;
}

.submenu__item a:hover {
  background: #4b4b4b;
  color: white;
}

/* Contenedores principales */
.contenedorV,
.contenedorM {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  position: relative;
}

/* Contenedor de fondo con imagen */
.image-background-m,
.image-background-v {
  position: relative;
}

.image-background-m::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/img.png");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: -1;
}

.image-background-v::before {
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/img_mvision.png");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: -1;
}
.contenedorV > div,
.contenedorM > div {
  width: 90%; 
  max-width: 800px; 
  padding: 1rem; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: clamp(1rem, 1.5vw, 1.5rem); 
  color: #000000;
  text-align: justify;
  background-color: rgba(204, 204, 204, 0.7); 
  border: 1px solid #fff;
  box-sizing: border-box; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
}

/* Títulos */
.titulo-m,
.titulo-v {
  color: #000000;
  text-align: center;
}

.titulo-m {
  font-size: clamp(1.5rem, 2vw, 2rem); 
}

.titulo-v {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

/* Media Queries */
@media (max-width: 768px) {
  .contenedorV > div,
  .contenedorM > div {
    width: 95%;
    
    font-size: clamp(0.9rem, 2vw, 1.2rem); 
  }

  .titulo-m,
  .titulo-v {
    font-size: clamp(1rem, 2vw, 1.5rem); 
  }
}

@media (max-width: 580px) {
  .contenedorV,
  .contenedorM {
    padding: 1rem; 
  }

  .contenedorV > div,
  .contenedorM > div {
      height: auto;
    width: 100%; 
    font-size: clamp(0.8rem, 2vw, 1rem); 
  }

  .titulo-m,
  .titulo-v {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
}


/* estilos del navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
}

.navbar-brand {
  flex: 1;
  max-height: 150px;
}

.navbar-brand img {
  height: 100%;
  width: auto;
}

.navbar-toggler {
  z-index: 2;
  padding-right: 2px;
  margin: 10px;
}

.collapse.navbar-collapse {
  flex-grow: 1;
  justify-content: center;
}

.navbar-nav {
  width: 80%;
  display: flex;
  justify-content: space-around;
}

.nav-item {
  flex-grow: 1;
  text-align: center;
}

/* estilos del menú breadcrumb */

.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  display: inline-block;
}

.breadcrumb a {
  text-decoration: none;
  color: #f39200;
}

.breadcrumb .active {
  color: #6c757d;
}

.breadcrumb-container {
  padding: 10px 0;
}

.breadcrumb a:hover {
  color: #4b4b4b;
  text-decoration: none;
}

/* MENU - SOFTWARE */
.container_menu {
  margin: auto;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-body h4 {
  color: #f39200;
  font-weight: bolder;
}
.container__menu {
  position: relative;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
}

.container__menu .card__menu {
  width: 434px;
  height: 330px;
  background: #f8f9fa;
  margin: 30px 10px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease-in-out;
}

.container__menu .card__menu:hover {
  height: 430px;
  background: #ffffff;
}

.container__menu .card__menu .img__menu {
  position: relative;
  width: 400px;
  height: 300px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  top: -50px;
  z-index: 1;
}
.container__menu .card__menu .img__menu h3 {
  color: #000000;
}

.container__menu .card__menu:hover .img__menu h3 {
  color: #f39200;
  font-weight: bolder;
}

.container__menu .card__menu .img__menu img {
  max-width: 100%;
  height: 100%;
  border-radius: 6px;
}

.detail__menu p {
  padding: 10px;
  text-align: center;
}

.container__menu .card__menu .detail__menu {
  position: relative;
  margin-top: -140px;
  padding: 10px 10px;
  text-align: center;
  color: #000;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.container__menu .card__menu:hover .detail__menu {
  visibility: visible;
  opacity: 1;
  margin-top: -60px;
}

.center {
  text-align: center;
}
.margin {
  padding: 2px;
  margin-top: 17px;
}

/* tipo de software - planes */
.card__tipo {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card__tipo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card__tipo img {
  transition: opacity 0.3s ease;
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.card-text {
  text-align: center;
  font-size: 12px;
}
.card {
  max-height: 500px;
}

.card__ancho {
  max-width: 400px;
  max-height: 500px;
}

/* categorias */
.card__categoria {
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.card__categoria:hover {
  transform: translateY(-7px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.card__categoria img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.card__categoria h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.card__categoria p {
  font-size: 1rem;
  color: #666;
  margin: 0.5rem 0;
}

.card__mensual {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ffffff;
}

.card__mensual::before {
  font-weight: 600;
  content: "ANUALES";
  background: #ff0000;
  padding: 5px 8px;
  width: 120px;
  position: absolute;
  top: 12px;
  right: -35px;
  transform: rotate(45deg);
  color: #ffffff;
  font-size: 11px;
  border: 1px solid #ffffff;
}

.card__anual {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ffffff;
}

.card__anual::before {
  font-weight: 600;
  content: "MENSUALES";
  background: #ff0000;
  padding: 5px 8px;
  width: 120px;
  position: absolute;
  top: 12px;
  right: -35px;
  transform: rotate(45deg);
  color: #ffffff;
  font-size: 11px;
  border: 1px solid #ffffff;
}

/* quienes somos */
.somos {
  width: 100%;
  height: 600px;
  background: #f8f9fa;
  background: -webkit-linear-gradient(
      to right,
      hsla(300, 3%, 93%, 0.671),
      hsla(240, 6%, 97%, 0.664)
    ),
    url(../img/somos.jpg);
  background: linear-gradient(
      to right,
      hsla(300, 3%, 93%, 0.671),
      hsla(240, 6%, 97%, 0.664)
    ),
    url(../img/somos.jpg);
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  justify-content: center;
  display: flex;
}

.center_somos {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 70px;
  width: 100%;
}

.texto_somos {
  height: 430px;
  padding: 10px;
  max-width: 900px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1.5vw;
  border: 1px solid #ffffff;
}

.texto_somos h2 {
  font-weight: 400;
}

@media (max-width: 1200px) {
  .somos {
    height: 500px;
  }

  .texto_somos {
    height: 380px;
    font-size: 2vw;
  }
}

@media (max-width: 992px) {
  .somos {
    height: 400px;
  }

  .texto_somos {
    height: 300px;
    font-size: 1vw;
  }
}

@media (max-width: 768px) {
  .somos {
    height: 350px;
    background-attachment: scroll;
  }

  .texto_somos {
    height: auto;
    padding: 10px;
    font-size: 2vw;
  }

  .center_somos {
    margin: 25px;
  }
}

@media (max-width: 576px) {
  .somos {
    height: auto;
  }

  .texto_somos {
    height: auto;
    font-size: 0.2vw;
    padding: 20px;
  }

  .center_somos {
    margin: 20px;
  }
}

/* nuestra historia */
.contenedor_historia {
  padding: 60px 0;
  width: 100%;
  max-width: 1250px;
  margin: auto;
  overflow: hidden;
}

.nuestra_historia {
  padding: 30px 0 60px 0;
}

.historia {
  width: 100%;
  height: 380px;
  border: 10px solid #f39200;
  margin-top: 100px;
}

.contenedor_nuestra_historia {
  width: 98%;
  display: flex;
  justify-content: center;
  margin-top: -80px;
  gap: 20px;
}

.imagen_historia {
  width: 40%;
}

.contenido_historia {
  width: 50%;
  padding: 20px;
  text-align: justify;
  background-color: #f8f9fa;
  height: 450px;
  object-fit: contain;
}

.contenido_historia p {
  font-size: 0.8vw;
}

.titulo__historia {
  color: #4d0686;
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
  margin-top: -120px;
}

.center__historia {
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1200px) {
  .historia {
    height: auto;
  }

  .contenedor_nuestra_historia {
    flex-direction: column;
    margin-top: 0;
    gap: 10px;
  }

  .imagen_historia,
  .contenido_historia {
    width: 100%;
  }
  .contenido_historia p {
    font-size: 1.6vw;
  }
}

@media (max-width: 992px) {
  .historia {
    height: auto;
  }

  .contenedor_nuestra_historia {
    flex-direction: column;
    gap: 15px;
  }

  .imagen_historia,
  .contenido_historia {
    width: 100%;
  }

  .titulo__historia {
    font-size: 25px;
    margin-top: -90px;
  }
  .contenido_historia p {
    font-size: 1.6vw;
  }
}

@media (max-width: 768px) {
  .contenedor_historia {
    padding: 30px 0;
  }

  .historia {
    height: auto;
    margin-top: 50px;
  }

  .contenedor_nuestra_historia {
    flex-direction: column;
    gap: 20px;
  }

  .imagen_historia,
  .contenido_historia {
    width: 100%;
  }

  .contenido_historia {
    padding: 15px;
    height: auto;
  }

  .titulo__historia {
    font-size: 30px;
    margin-top: -75px;
    margin-bottom: -30px;
  }
  .contenido_historia p {
    font-size: 1.8vw;
  }
}

@media (max-width: 576px) {
  .contenedor_historia {
    padding: 20px 0;
  }

  .historia {
    height: auto;
    margin-top: 30px;
  }

  .contenedor_nuestra_historia {
    flex-direction: column;
    gap: 10px;
  }

  .imagen_historia,
  .contenido_historia {
    width: 100%;
  }

  .contenido_historia {
    padding: 10px;
    height: auto;
  }

  .titulo__historia {
    font-size: 25px;
    margin-top: -70px;
    margin-bottom: -30px;
  }
  .contenido_historia p {
    font-size: 0.8rem;
  }
}

/* equipo de trabajo */

.equipo-trabajo {
  margin-top: 5px;
  width: 100%;
  max-width: 1500px;
  flex-wrap: wrap;
  height: 270px;
}

.titulo_equipo {
  color: #4d0686;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.contenedor-equipo {
  width: 100%;
  max-width: 1100;
  height: 100px;
  background-color: #4d0686;
  display: flex;
  justify-content: center;
  padding: 60px;
}

.contenido__equipo {
  text-align: justify;
  border: 10px solid #ffffff;
  background-color: #f8f9fa;
  width: 55%;
  margin-top: -100px;
  padding: 15px;
  font-size: 15px;
  height: 195px;
  display: flex;
  gap: 20px;
}

.img_equipo {
  border-radius: 50%;
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
}

.text-equipo {
  color: #000000;
}

.center__equipo {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .contenedor-equipo {
    flex-direction: column;
    padding: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 200px;
  }

  .contenido__equipo {
    width: 80%;
    margin-top: -50px;
    height: auto;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .img_equipo {
    max-width: 150px;
    max-height: 150px;
  }
  .titulo_equipo {
    margin-top: -60px;
    margin-bottom: 70px;
    font-size: 25px;
  }
  .equipo-trabajo {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .contenedor-equipo {
    padding: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 200px;
  }

  .contenido__equipo {
    width: 90%;
    margin-top: -30px;
    height: auto;
  }

  .img_equipo {
    max-width: 120px;
    max-height: 120px;
  }

  .titulo_equipo {
    margin-top: -60px;
    margin-bottom: 50px;
    font-size: 25px;
  }
  .equipo-trabajo {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contenedor-equipo {
    padding: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 160px;
  }

  .contenido__equipo {
    width: 100%;
    margin-top: -20px;
    height: auto;
  }

  .img_equipo {
    max-width: 100px;
    max-height: 100px;
  }

  .titulo_equipo {
    margin-top: -70px;
    margin-bottom: 70px;
    font-size: 25px;
  }
  .equipo-trabajo {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contenedor-equipo {
    padding: 10px;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 250px;
    margin-bottom: 200px;
  }

  .contenido__equipo {
    width: 80%;
    margin-top: 200px;
    height: auto;
    padding: 10px;
    margin-bottom: 100px;
  }
  .text-equipo{
    font-size:1rem;
  }
  .img_equipo {
    max-width: 100px;
    max-height: 100px;
  }

  .titulo_equipo {

    font-size: 25px;
  }
  .equipo-trabajo {
    height: 400px;
    margin-bottom:150px;
  }
}



/* nuestros valores */

.contenedor__valores {
  padding: 60px 0;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.nuestros_valores {
  padding: 10px 0 30px 0;
}

.titulo_valores {
  color: #4d0686;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.contenedor-nuestros-valores {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.imagen_valores {
  width: 45%;
}

.nuestros_valores .contenido_valores {
  width: 48%;
}

.contenido_valores h3 {
  margin-bottom: 5px;
}

.contenido_valores h3 span {
  background: #f39200;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 30px;
  padding-top: 5px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  margin-right: 5px;
  font-size: 15px;
}

.contenido_valores p {
  padding: 5px;
  text-align: justify;
  background-color: #f8f9fa;
}

.center_valores {
  justify-content: center;
  text-align: center;
}

.center_valores hr {
  color: #f39200;
}

@media (max-width: 1200px) {
  .contenedor-nuestros-valores {
    flex-direction: column;
    align-items: center;
  }

  .imagen_valores,
  .nuestros_valores .contenido_valores {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .contenedor__valores {
    padding: 30px 0;
  }

  .titulo_valores {
    font-size: 25px;
  }

  .contenedor-nuestros-valores {
    flex-direction: column;
    align-items: center;
  }

  .imagen_valores,
  .nuestros_valores .contenido_valores {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .contenedor__valores {
    padding: 20px 0;
  }

  .titulo_valores {
    font-size: 25px;
  }

  .contenedor-nuestros-valores {
    flex-direction: column;
    align-items: center;
  }

  .imagen_valores,
  .nuestros_valores .contenido_valores {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .contenedor__valores {
    padding: 10px 0;
  }

  .titulo_valores {
      margin-top:25px;
    font-size: 25px;
  }

  .contenedor-nuestros-valores {
    flex-direction: column;
    align-items: center;
  }

  .imagen_valores,
  .nuestros_valores .contenido_valores {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* porque elegirnos */
.contenedor_elegirnos {
  width: 90%;
  max-width: 1000px;
  padding: 20px;
  margin: auto;
}

.titulo_elegirnos {
  color: #4d0686;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.center_elegirnos {
  display: flex;
  justify-content: center;
  text-align: justify;
}

.contenido_elegirnos {
  /* width: 40%; */
  font-size: 18px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 5px;
  border-bottom: 10px double #f39200;
}

@media (max-width: 1200px) {
  .contenido_elegirnos {
    width: 60%;
  }

  .titulo_elegirnos {
    font-size: 25px;
  }
}

@media (max-width: 992px) {
  .contenido_elegirnos {
    width: 80%;
  }

  .titulo_elegirnos {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .contenido_elegirnos {
    width: 90%;
  }

  .titulo_elegirnos {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .contenido_elegirnos {
    width: 100%;
    padding: 15px;
  }

  .titulo_elegirnos {
    font-size: 18px;
  }
}

/* más información */

.container-infomacion {
  text-align: justify;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title {
  display: flex;
  text-align:center;
  align-items: center;
  justify-content: center;

}

.button_informacion {
  background-color: #f8f9fa;
  border-radius: 50%;
  font-size:18px;
  color: rgb(0, 0, 0);
  border: 1px solid #f39200;
  width: 30px; 
  height: 30px; 
  min-width: 20px; 
  min-height: 20px;
  margin-left: 1rem; 
}

.button_informacion:hover {
  box-shadow: none;
  border: 1px solid #ffffff;
  background-color: #4d0686;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease; 
}

.container_tittle_search span{
    margin:50px;
}
.ocultar {
  display: none;
}

.mostrar {
  display: block;
}

.stat {
  text-align: center;
}
.stat-count {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  overflow: hidden;
  padding-top: 15px;
}

/* contador de visitantes */
.visita {
  position: fixed;
  padding: 5px;
  width: 100px;
  height: 120px;
  line-height: 36px;
  bottom: 50%;
  left: 15px;
  text-align: center;
  border-radius: 5%;
  color: #4d0686;
}
.center_visita {
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}
.contador {
  background-image: url("../img/numero.png");
  background-size: cover;
  background-position: center;
  position: fixed;
  width: 100px;
  height: 95px;
  bottom: 50%;
  color: #4d0686;
}

/* software */
.container_software {
  padding: 30px 0;
  width: 1500;
  max-width: auto;
  margin: auto;
  overflow: hidden;
  gap: 20px;
  text-align: center;
  justify-content: center;
  height:auto;
}

.contenedor_software {
  height: auto;
  object-fit: cover;
  margin-bottom: 35px;
}
.center_imagen_software{
  
  justify-content: center;
  text-align: center;
  display: flex;
}
.imagen_software {
  width: 100%;
  width: 580px;
  max-width: 580px;
  height: auto;
  max-height: auto;
  object-fit: contain; 
  overflow: hidden;
}

.detalle_software {
  width: 680px;
  max-width: 680px;
  border: 1px solid #4b4b4b38;
  padding: 15px;
  margin-left: 30px;
  height: auto;
  text-align: justify;
  max-height: auto;
  font-size: 14px;
  border-radius: 5px;
}
.detalle_software p {
  white-space: pre-wrap;
}

.titulo__software {
  color: #4d0686;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 25px;
  /* margin-left: 50px; */
}

.software_price {
  color: #f39200;
  font-weight: bold;
  font-size: 30px;
}
.impuestos{
  font-size: 15px;
  color: #4d0686;
  display: flex;
  font-weight: 600;
  text-align: center;
  justify-content: center;
}
.impuestos p{
  margin-bottom: -5px;
}

.impuestos a{
  cursor: pointer;
}

.mostrar_cotiza{
  display: block;
}

.ocultar_cotiza{
  display: none;
}

.center__software {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
/* botón lo quiero */

.button_quiero {
  margin-top: 1rem; 
  width: 20%; 
  max-width: 200px; 
  background-color: #f39200;
  color: #ffffff;
  padding: 0.75rem 0.1rem; 
  font-size: 1rem; 
  font-weight: 550;
  border-radius: 0.3125rem; 
  cursor: pointer;
  text-decoration: none;
  display: inline-block; 
  text-align: center; 
}

.button_quiero:hover {
  background-color: rgba(187, 180, 180, 0.473);
  color: #080710;
  border: 1px solid #4d0686; 
  border-bottom-width: 3px; 
  text-decoration: none;
}

.container_quiero_2{
  justify-content: right;
  text-align: center;
  display: flex;
}
.button_quiero_2 {
  margin-top: -25px;
  width: 31px;
  height: 31px;
  border: 1px solid #f39200;
  background-color: #f2f2f2;
  color: #000;
  font-size: 16px;
  font-weight: 550;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  z-index: 2;
  text-align: center;
  justify-content: center;
}


.button_quiero_2:hover{
border: 1px solid #4d0686;
background-color: #f2f2f2;
color: #000;
}

@media (max-width: 1428px) {
  .detalle_software {
    margin-left: 0;
  }

  .titulo__software {
    margin-top: 20px;
    margin-left: 0px;
    font-size: 20px;
  }

  .software_price {
    font-size: 28px;
  }
  .button_quiero {
    width: 30%;
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .detalle_software {
    margin-left: 0px;
  }

  .titulo__software {
    margin-left: 0px;
    font-size: 20px;
    margin-top: 20px;
  }

  .software_price {
    font-size: 26px;
  }
  .button_quiero {
    width: 30%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .detalle_software {
    margin-left: 0;
    width: 100%;
    padding: 15px;
  }

  .titulo__software {
    margin-top: 20px;
    margin-left: 0;
    font-size: 20px;
  }

  .software_price {
    font-size: 24px;
  }

  .imagen_software {
    height: auto;
    margin-bottom: 20px;
  }
  .button_quiero {
    width: 30%;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .detalle_software {
    margin-left: 0;
    width: 100%;
    padding: 10px;
  }

  .titulo__software {
    margin-top: 20px;
    margin-left: 0;
    font-size: 16px;
  }

  .software_price {
    font-size: 22px;
  }

  .imagen_software {
    width: auto;
    max-width: 360px;
    height: auto;
    max-height: 500px;
    margin-bottom: 10px;
  }
  .button_quiero {
    width: 40%;
    margin-left: 0;
  }
}
/* Bienvenido */
.bienvenido {
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  top: 40%;
  left: 50%;
}

.bienvenido h2,
p {
  display: block;
}

.text1 {
  color: #ffffff;
  font-size: 80px;
  font-family: 900;
  position: relative;
  animation: text 3s 1;
  padding: 10px;
}

.text2 {
  font-size: 50px;
  font-weight: 500;
  color: #f39200;
  opacity: 0;
  animation: fadeIn 1s 1 forwards;
  animation-delay: 3s;
}

@keyframes text {
  0% {
    color: #343a40;
    margin-bottom: -40px;
  }
  30% {
    letter-spacing: 20px;
    margin-bottom: -40px;
  }
  85% {
    letter-spacing: 8px;
    margin-bottom: -40px;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 1600px) {
  .text1 {
    font-size: 70px;
  }
  .text2 {
    font-size: 40px;
  }
  
  @keyframes text {
    0% {
      color: #343a40;
      margin-bottom: -60px;
    }
    30% {
      letter-spacing: 10px;
      margin-bottom: -60px;
    }
    85% {
      letter-spacing: 5px;
      margin-bottom: -60px;
    }
  }
}

@media (max-width: 992px) {
  .text1 {
    font-size: 40px;
  }
  .text2 {
    font-size: 30px;
  }
  @keyframes text {
    0% {
      color: #343a40;
      margin-bottom: -60px;
    }
    30% {
      letter-spacing: 10px;
      margin-bottom: -60px;
    }
    85% {
      letter-spacing: 5px;
      margin-bottom: -60px;
    }
  }
}

@media (max-width: 768px) {
  .bienvenido {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .text1 {
    font-size: 35px;
    letter-spacing: 5px;
    margin-bottom: 20px;
  }
  .text2 {
    font-size: 25px;
  }
  @keyframes text {
    0% {
      color: #343a40;
      margin-bottom: -60px;
    }
    30% {
      letter-spacing: 5px;
      margin-bottom: -60px;
    }
    85% {
      letter-spacing: 2px;
      margin-bottom: -60px;
    }
  }
}

@media (max-width: 576px) {
  .text1 {
    font-size: 28px;
  }
  .text2 {
    font-size: 25px;
  }
  @keyframes text {
    0% {
      color: #343a40;
      margin-bottom: -20px;
    }
    30% {
      letter-spacing: 5px;
      margin-bottom: -20px;
    }
    85% {
      letter-spacing: 3px;
      margin-bottom: -20px;
    }
  }
}

/* novedades */
.container_novedades {
  position: relative;
  display: block;
  z-index: 2;
  text-align: right;
  margin-bottom: -120px;
  margin-top: 50px;
}

.btn_novedades {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  padding: 15px 30px;
  font-size: 20px;
  text-decoration: none;
  color: #f39200;
  border-radius: 5px;
  transition: transform 0.2s ease-out, background-color 0.3s, color 0.3s;
  animation: bounce 2s infinite, fadeInOut 20s forwards;
  z-index: 3;
}

.btn_novedades:hover {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #f39200;
  animation-play-state: paused;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.container_novedades {
  animation: fadeIn 1s ease-out;
}

@media (max-width: 576px) {
  .btn_novedades {
    font-size: 15px;
  }

}
