:root {
  --background-color: #f9fafb;
  /* Background color for the entire website, including individual sections */
  --default-color: #777777;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #165b9a;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #10b981;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  }
  /*  General Styles
/*----------------------------------------------*/
  *,
  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  html {
    box-sizing: border-box;
  }

  body {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
      "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --hero-font: "Roboto", sans-serif;
    --heading-font: "Roboto Condensed", sans-serif;
    --heading-font-weight: 700;
    --heading-line-height: 1.24;

    --linear-gradient: linear-gradient(90deg,
        rgba(22, 91, 154, 1) 0%,
        rgba(22, 91, 154, 1) 62%,
        rgba(155, 209, 245, 1) 100%);
    /* bootstrap */
    --bs-body-font-family: "Roboto", sans-serif;
    --bs-body-font-size: 18px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6875rem;
    --bs-body-color: #777777;
    --bs-body-color-rgb: 143, 143, 143;

    --bs-primary: #8c907e;
    --bs-secondary: #165b9a;
    --bs-black: #313131;
    --bs-light: #e3eff7;
    --bs-dark: #212529;
    --bs-gray: #d9d9d9;
    --bs-gray-dark: #51565b;

    --bs-primary-rgb: 140, 144, 126;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-black-rgb: 17, 17, 17;
    --bs-light-rgb: 241, 241, 240;
    --bs-dark-rgb: 33, 37, 41;

    --bs-link-color: #111;
    --bs-link-color-rgb: 17, 17, 17;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #111;
    --bs-link-hover-color-rgb: 17, 17, 17;
  }

  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    font-family: var(--heading-font);
    font-weight: var(--heading-font-weight);
    line-height: var(--heading-line-height);
    letter-spacing: 0.065rem;
  }

  p {
    font-family: var(--hero-font);
  }

  h6 {
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.19rem;
  }

  .heading-color {
    color: var(--accent-color);
  }

  a {
    text-decoration: none;
    color: var(--bs-secondary);
  }

  a:hover {
    text-decoration: none;
    color: var(--accent-color);
  }

  .text-primary {
    --bs-text-opacity: 1;
    color: var(--bs-secondary) !important;
  }

  .icon-text {
    color: var(--heading-color);
  }

  /* bootstrap button style  */

  .btn {
    --bs-btn-padding-x: 1.88em;
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-font-family: var(--heading-font);
    --bs-btn-font-size: 1.1875rem;
    --bs-btn-font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
  }

  .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #fff;
    --bs-btn-active-border-color: #fff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #fff;
    --bs-btn-disabled-border-color: #fff;
  }

  .btn-primary {
    background-image: linear-gradient(90deg, #165b9a 0%, #9bd1f5 100%);
    background-size: 200% auto;
    border: none;
    transition: 0.7s all;
    -webkit-transition: 0.7s all;
  }

  .btn-primary:hover {
    background-position: right center;
  }

  /*---- navigation section style start ----*/

  .navbar {
    font-family: var(--heading-font);
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: var(--bs-black);
    --bs-navbar-hover-color: #71c55d;
    --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
    --bs-navbar-active-color: #71c55d;
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
    --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  }

  .nav-link {
    font-size: 1rem;
    font-weight: 700;
  }

  .nav-link:active {
    color: var(--accent-color) !important;
  }

  nav.navbar {
    z-index: 10;
  }

  /* dropdown style  */

  .dropdown-menu {
    --bs-dropdown-border-radius: 0px;
  }

  .dropdown-item.active,
  .dropdown-item:active {
    background-color: var(--bs-gray);
    color: var(--bs-black);
  }

  .dropdown-item {
    font-weight: 600;
    color: var(--bs-black);
  }

  @media only screen and (max-width: 1200px) {
    a.phone-no {
      display: none;
    }
  }

  @media only screen and (max-width: 1800px) {
    .pattern-overlay {
      display: none;
    }
  }

  .bg-secondary {
    --bs-bg-opacity: 1;
    background-color: var(--accent-color) !important;
  }

  /*---- hero section style start ----*/

  #hero {
    position: relative;
    background-color: #165b9a;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
  }

  #hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: 1;
    background-color: #165b9a;
  }

  #hero img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }

  #hero .container {
    position: relative;
    z-index: 2;
  }

  form.hero-form {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;

    h3 {
      text-align: center;
    }
  }

  .form-label {
    font-size: 0.875rem;
    color: var(--bs-black);
    text-transform: uppercase;
  }

  .form-control {
    /* border: none; */
    border-radius: 0;
  }

  #hero h1,
  #hero h2 {
    font-family: var(--hero-font);
  }

  #hero h2 {
    font-weight: normal;
  }

  #hero .btn-get-started {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-block;
    padding: 11px 36px;
    border-radius: 50px;
    transition: 0.5s;
    margin-bottom: 30px;
    border: 2px solid var(--accent-color);
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
  }

  #hero .btn-get-started:hover {
    background: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
  }

  #hero .btns a {
    color: #555;
    font-size: 11px;
    font-weight: 600;
    margin: 4px 20px;
    text-decoration: none;
    transition: 0.3s;
  }

  @media (max-width: 575px) {
    #hero .btns a {
      margin: 4px 8px;
    }
  }

  #hero .btns a:hover {
    color: #71c55d;
  }

  /*** Team Start ***/
  .team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;

    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 100px;
  }

  .team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
  }

  .team .team-item:hover::after {
    height: 100%;
  }

  .team .team-item .team-content {
    position: relative;
    z-index: 5;
    flex: 1;
  }

  .team .team-item .team-content h4,
  .team .team-item .team-content p {
    transition: 0.5s;
  }

  .team .team-item .team-content-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
  }

  .team .team-item:hover .team-content h3 {
    color: var(--bs-white);
  }

  .team .team-item:hover .team-content p {
    color: var(--bs-white);
  }

  .team .team-item .team-content-paragraph {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .team.row.equal-height .col-lg-3 {
    display: flex;
  }

  .team.row.equal-height .team-item {
    flex: 1;
  }

  @media (max-width: 767px) {
    .team .team-item .team-content-paragraph {
      height: auto;
    }
  }

  .team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
  }

  .team .team-item .team-img img {
    transition: 0.5s;
  }

  .team .team-item:hover .team-img img {
    transform: scale(1.1);
  }

  /* .team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .3);
  z-index: 3;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
} */

  .team .btn-success {
    border-radius: 30px;
  }

  .team .btn-success:hover {
    background-color: white;
    color: #198754;
  }

  /*** Team End ***/

  /*** Features Start ***/
  .feature {
    background-image: url("../images/back-parallax.jpg");
    background-size: cover;
  }

  .feature .feature-item {
    display: flex;
    border-radius: 10px;
  }

  .feature .feature-item .feature-icon span {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
  }

  /*** Features End ***/
  /* Video Section
--------------------------------*/
  #video {
    background: rgb(22, 91, 154);
    background: linear-gradient(180deg,
        rgba(22, 91, 154, 1) 0%,
        rgba(62, 126, 179, 1) 100%);
    height: fit-content;
    overflow: hidden;
    margin-top: 100px;
    padding: 40px;
  }

  #video h2 {
    font-family: "Roboto", sans-serif;
    font-size: 45px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
  }

  #video p {
    color: #fff;
  }

  @media (max-width: 991px) {
    #video h2 {
      font-size: 40px;
    }
  }

  @media (max-width: 673px) {
    #video h2 {
      font-size: 35px;
    }
  }

  @media (max-width: 393px) {
    #video h2 {
      font-size: 25px;
    }
  }

  #video .overlay {
    background: rgba(0, 0, 0, 0);
    height: 50%;
  }

  #video .overlay .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#71c55d 50%, rgba(113, 197, 93, 0.15) 52%);
    border-radius: 50%;
    display: block;
    margin: 0px auto 0;
    position: relative;
    overflow: hidden;
  }

  #video .overlay .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  #video .overlay .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
  }

  #video .overlay .play-btn:hover::after {
    border-left: 15px solid #71c55d;
    -webkit-transform: scale(20);
    transform: scale(20);
  }

  #video .overlay .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
  }

  @-webkit-keyframes pulsate1 {
    0% {
      -webkit-transform: scale(0.6, 0.6);
      transform: scale(0.6, 0.6);
      opacity: 1;
    }

    100% {
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
      opacity: 0;
    }
  }

  @keyframes pulsate1 {
    0% {
      -webkit-transform: scale(0.6, 0.6);
      transform: scale(0.6, 0.6);
      opacity: 1;
    }

    100% {
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
      opacity: 0;
    }
  }

  @-webkit-keyframes pulsate2 {
    0% {
      -webkit-transform: scale(0.1, 0.1);
      transform: scale(0.1, 0.1);
      opacity: 1;
    }

    100% {
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
      opacity: 0;
    }
  }

  /*** Services Start ***/
  .service .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
  }

  .service .service-item:hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    background: var(--bs-light);
  }

  .service .service-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
  }

  .service .service-item:hover::after {
    opacity: 1;
  }

  .service .service-item .service-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #179d3d;
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
  }

  /*** Service End ***/

  /*---- cta section style start ----*/

  section#cta {
    background: var(--linear-gradient);
  }

  #cta .btn-success {
    border-radius: 30px;
  }

  #cta.btn-success:hover {
    background-color: white;
    color: #198754;
  }

  #cta span {
    color: var(--accent-color);
  }

  @media only screen and (max-width: 770px) {
    .cta-pattern-overlay {
      display: none;
    }
  }

  /*---- automatizacion ----*/

  #automatizacion .btn-success {
    border-radius: 30px;
  }

  #automatizacion .btn-success:hover {
    background-color: white;
    color: #198754;
  }

  /*---- contacto section style start ----*/

  #contacto .btn-success {
    border-radius: 30px;
    font-size: 12px;
  }

  #contacto .btn-success:hover {
    background-color: white;
    color: #198754;
  }

  #contacto .email i {
    font-size: 32px;
    color: #198754;
  }

  .click-closed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 1035;
    background-color: #000000;
    opacity: 0.4;
  }

  .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
    width: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
  }

  .btn.btn-secondary {
    background-color: var(--bs-secondary);
    border: none;
  }

  /* -----------Footer------------- */
  .footer-container {
    padding: 0 40px;
    background-color: #b9d2e8;
  }

  .footer-container .btn-primary {
    padding: 0 40px 40px;
  }

  /*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
  .testimonials .testimonial-item {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    position: relative;
    height: 100%;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    margin-right: 15px;
  }

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

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

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
  }

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

  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }

  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
  }

  .testimonials .swiper-wrapper {
    height: auto;
  }

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

  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
  }

  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }

  @media (max-width: 767px) {
    .testimonials .testimonial-wrap {
      padding-left: 0;
    }

    .testimonials .testimonial-item {
      padding: 30px;
      margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
      position: static;
      left: auto;
    }
  }

  .domino-box {
    background: rgb(22, 91, 154);
    background: linear-gradient(180deg,
        rgba(22, 91, 154, 1) 0%,
        rgba(62, 126, 179, 1) 100%);
    color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    cursor: default;
    padding: 10px;
  }

  .swiper-pagination {
    position: relative !important;
  }

  .domino-square {
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .domino-square:hover {
    transform: scale(1.05) translateX(10px);
  }

  #ventajas .feature p {
    color: #000;
  }

  p span {
    color: #165b9a;
    font-weight: bold;
  }

  @media (max-width: 400px) {
    .offcanvas {
      height: fit-content;
    }
  }

  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  input[type="number"] {
    -moz-appearance: textfield;
  }

  .sub {
    font-size: 1.2rem;
    color: var(--bs-secondary);
    text-align: center;
    font-weight: 700;
  }

  .sub span {
    font-size: .8rem;
    text-align: center;
    color: var(--bs-body-color);
    font-weight: 500;
  }

  /* Fondo sección */
  .bg-light {
    background-color: var(--bs-light) !important;
  }

  /* Nav vertical */
  .nav-pills .nav-link {
    color: var(--bs-dark);
    border-radius: 8px;
    margin-bottom: 6px;
    text-align: left;
    font-weight: 500;
  }

  .nav-pills .nav-link:hover {
    background-color: var(--bs-gray);
  }

  .nav-pills .nav-link.active {
    background: var(--linear-gradient);
    color: #fff;
  }

  /* Panel contenido */
  .tab-content {
    border: 1px solid var(--bs-gray);
  }

  .tab-pane h5 {
    color: var(--bs-secondary);
    font-weight: 600;
  }

  .tab-pane p {
    text-align: justify;
  }

  /* Fondo sección */
  .bg-light {
    background-color: var(--bs-light) !important;
  }

  /* Wrapper */
  .custom-table-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    /* overflow: hidden; */
  }

  /* Tabla */
  .custom-table {
    margin-bottom: 0;
    min-width: 900px;
  }

  /* Header */
  .custom-table thead {
    background: var(--linear-gradient);
    color: #fff;
  }

  .custom-table th {
    border: none;
    padding: 16px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    white-space: nowrap;
    text-align: center;
  }

  /* Celdas */
  .custom-table td {
    padding: 16px;
    vertical-align: top;
    border-color: var(--bs-gray);
    color: var(--bs-black);
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  /* Primera columna jerárquica */
  .custom-table td:first-child {
    min-width: 220px;
  }

  /* Subtexto tecnología */
  .tech-sub {
    color: var(--bs-gray-dark);
    font-size: 12px;
  }

  /* Hover profesional */
  .custom-table tbody tr:hover {
    background-color: var(--bs-light);
  }

  /* Zebra */
  .custom-table tbody tr:nth-child(even) {
    background-color: #fafcfe;
  }

  /* Responsive mejora legibilidad */
  @media (max-width: 768px) {

    .custom-table th,
    .custom-table td {
      padding: 12px;
      font-size: 13px;
    }
  }

  .table-primary {
    --bs-table-bg: #165b9a !important;
    --bs-table-color: #fff !important;
  }

  /* Card clicable */
  .decision-card .card {
    border-radius: 14px;
    transition: all .25s ease;
  }

  .decision-card:hover .card {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
  }

  /* Badge superior */
  .decision-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--bs-gray);
    color: var(--bs-dark);
  }

  /* Título */
  .card-title {
    color: var(--bs-dark);
    font-weight: 600;
  }

  .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


  /* Texto */
  .card-text {
    color: var(--bs-gray-dark);
    /* font-size: 14px; */
    line-height: 1.5;
    text-align: center;
  }

  /* Resultado */
  .decision-result {
    font-weight: 700;
    font-size: 18px;
    color: var(--bs-btn-hover-border-color);
  }



  .decision-result span {
    font-weight: 600;
    color: var(--accent-color);
    margin-left: 6px;
  }

  /* Hover estado activo */
  .decision-card:hover .decision-result {
    background: var(--linear-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .actualizacion-manufactura .card {
    background-color: var(--bs-secondary) !important;
  }

  .actualizacion-manufactura .card .decision-result,
  .actualizacion-manufactura .card .card-text {
    color: #fff !important;
  }


  /*--------------------------------------------------------------
# Testimonials Home Section
--------------------------------------------------------------*/
  .testimonials-home {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .testimonials-home .swiper-wrapper {
    height: auto !important;
  }

  .testimonials-home .swiper-slide{
  display:flex;
  height:auto;
}

  .testimonials-home .review-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 20px;
    margin-top: 5px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .testimonials-home .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }


  .testimonials-home .reviewer-photo img {

    object-fit: cover;
  
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .testimonials-home .review-body {
    position: relative;
    overflow: hidden;
      flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  }



 

  .testimonials-home .review-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin: .9rem;
  }



  .testimonials-home .swiper-button-prev,
  .testimonials-home .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: var(--surface-color);
    border-radius: 50%;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 88%);
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .testimonials-home .swiper-button-prev::after,
  .testimonials-home .swiper-button-next::after {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 700;
  }

  .testimonials-home .swiper-button-prev:hover,
  .testimonials-home .swiper-button-next:hover {
    background-color: var(--accent-color);
  }

  .testimonials-home .swiper-button-prev:hover::after,
  .testimonials-home .swiper-button-next:hover::after {
    color: var(--contrast-color);
  }

  @media (max-width: 768px) {

    .testimonials-home .swiper-button-prev,
    .testimonials-home .swiper-button-next {
      display: none;
    }
  }

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

  .testimonials-home .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
    opacity: 1;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .testimonials-home .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    transform: scale(1.3);
  }

  /* Fondo sección */
.faq-section {
  background: var(--background-color);
}

/* Título */
.faq-title {
  color: var(--heading-color);
  font-weight: 600;
}

/* Accordion base */
.custom-accordion .accordion-item {
  background: var(--surface-color);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

/* Botón */
.custom-accordion .accordion-button {
  background: var(--surface-color);
  color: var(--heading-color);
  font-weight: 600;
  gap: 10px;
  padding: 18px 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--surface-color);
  color: var(--heading-color);
  box-shadow: inset 0 -2px 0 var(--accent-color);
}

/* Ícono */
.faq-icon {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

/* Cuerpo */
.custom-accordion .accordion-body {
  color: var(--default-color);
  line-height: 1.7;
  padding: 18px 20px 22px;
}

/* Flecha */
.custom-accordion .accordion-button::after {
  filter: hue-rotate(140deg) saturate(1.2);
}

/* Hover */
.custom-accordion .accordion-button:hover {
  background: rgba(16,185,129,.06);
}

/* Focus accesible */
.custom-accordion .accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(16,185,129,.25);
}

/* Responsive tipografía */
@media (max-width: 768px) {
  .custom-accordion .accordion-button {
    font-size: 15px;
    padding: 16px;
  }
  .custom-accordion .accordion-body {
    font-size: 14px;
  }
}

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

.industrias img  {
  width: 30%;
}

.industrias h5 {
  text-align: center;
}

#v-tabs {
  justify-content: center;
}