/* ============================================================
   VOC ANALYTICS — main.css

   TABLA DE CONTENIDOS (usa Ctrl+F con el texto entre comillas)
   ─────────────────────────────────────────────────────────────
   Variables VOC ............... ":root"
   Reset / Utilidades .......... "RESET"
   Grid / Columnas ............. "GRID"
   Tipografía base ............. "TIPOGRAFIA"
   Botones base ................ "BOTONES BASE"
   Fuentes @font-face .......... "FONT-FACE"
   FAQ ......................... "FAQ"
   Footer ...................... "FOOTER VOC"
   Header ...................... "HEADER VOC"
   Modal ....................... "MODAL"
   ─ Secciones de página ─────────────────────
   Hero ........................ "HERO"
   Logos clientes .............. "LOGOS CLIENTES"
   Cobertura ................... "COBERTURA"
   Inteligencia 360° ........... "INTELIGENCIA"
   Timeline / Plataforma ....... "TIMELINE"
   Capacidades IA .............. "CAPACIDADES IA"
   Resultados / Tabs ........... "RESULTADOS"
   Beneficios .................. "BENEFICIOS"
   Testimonios ................. "TESTIMONIOS"
   Contacto / Formulario ....... "CONTACTO"
   ============================================================ */

/* ============================================================
   VARIABLES VOC — Paleta de colores y tipografía
   Modifica aquí para cambiar colores en toda la página.
   ============================================================ */
:root {
  /* Colores de marca */
  --voc-dark:        #1a1a2e;   /* fondo oscuro principal */
  --voc-purple:      #9243dd;   /* morado VOC */
  --voc-cyan:        #3cc8f0;   /* celeste VOC */
  --voc-blue:        #1e93e2;   /* azul secundario */
  --voc-navy:        #3f5482;   /* azul marino */

  /* Texto */
  --voc-text:        #414756;   /* texto principal */
  --voc-text-dark:   #374151;   /* texto oscuro */
  --voc-text-muted:  #6b7280;   /* texto suave */

  /* Estado */
  --voc-green:       #22c55e;   /* éxito / positivo */
  --voc-red:         #ff2139;   /* alerta / error */
  --voc-red-dark:    #ab082c;   /* rojo oscuro */
  --voc-yellow:      #ffd833;   /* acento dorado */

  /* Neutros */
  --voc-white:       #ffffff;
  --voc-gray-light:  #f2f2f2;
  --voc-border:      #e0e0e0;

  /* Tipografía */
  --voc-font:        "IsidoraSans", sans-serif;
  --voc-font-alt:    "Inter", sans-serif;
}

.invisible {
  visibility: hidden;
}
.hidden {
  display: none !important;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
html {
  min-height: 100%;
  position: relative;
}
body {
  -webkit-font-smoothing: antialiased;
  background: #fff;
  margin: 0;
}
body,
button,
input,
select {
  font-family: "IsidoraSans", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #414756;
}
a,
button,
input,
select {
  transition: 0.2s ease;
}
a {
  color: #ffd833;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}
button:hover,
select:hover,
label:hover {
  cursor: pointer;
}
h1,
h3,
h4,
.h1,
.h3,
.h4 {
  margin-bottom: 10px;
  font-family: "IsidoraSans", sans-serif;
  font-weight: 500;
}
p {
  margin-bottom: 10px;
}
h1,
.h1 {
  font-size: 38px;
  line-height: 42px;
}
@media (min-width: 960px) {
  h1,
  .h1 {
    font-size: 46px;
    line-height: 51px;
  }
}
h3,
.h3 {
  font-size: 22px;
  line-height: 25px;
}
@media (min-width: 480px) {
  h3,
  .h3 {
    font-size: 30px;
    line-height: 33px;
  }
}
h4,
.h4 {
  font-size: 18px;
  line-height: 25px;
}
@media (min-width: 480px) {
  h4,
  .h4 {
    font-size: 22px;
    line-height: 25px;
  }
}
ul {
  list-style-type: none;
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

/* ============================================================
   GRID / COLUMNAS
   ============================================================ */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7 {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
}
.grid {
  margin-left: -5px;
  margin-right: -5px;
}
.grid:before,
.grid:after {
  content: " ";
  display: table;
}
.grid:after {
  clear: both;
}
.grid>div {
  margin-bottom: 10px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.grid:last-child {
  margin-bottom: -10px;
}
@media (min-width: 960px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7 {
    float: left;
  }
  .col-7 {
    width: 58.333333333333336%;
  }
  .col-6 {
    width: 50%;
  }
  .col-5 {
    width: 41.66666666666667%;
  }
  .col-4 {
    width: 33.33333333333333%;
  }
  .col-3 {
    width: 25%;
  }
  .col-2 {
    width: 16.666666666666664%;
  }
  .col-1 {
    width: 8.333333333333332%;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes slideFadeUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
}
@keyframes slideFadeUp {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
}
@-webkit-keyframes slideUpOut {
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes slideUpOut {
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes slideFadeDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
}
@keyframes slideFadeDown {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
}
@-webkit-keyframes slideDownOut {
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes slideDownOut {
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes slideFadeLeft {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
}
@keyframes slideFadeLeft {
  0% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
  }
}
@-webkit-keyframes slideLeftOut {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slideLeftOut {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slideRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slideFadeRight {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
}
@keyframes slideFadeRight {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
}
@-webkit-keyframes slideRightOut {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slideRightOut {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes slideDiagonal-1 {
  50% {
    -webkit-transform: translate(-60px, 60px);
            transform: translate(-60px, 60px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes slideDiagonal-1 {
  50% {
    -webkit-transform: translate(-60px, 60px);
            transform: translate(-60px, 60px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@-webkit-keyframes slideDiagonal-2 {
  50% {
    -webkit-transform: translate(-40px, 40px);
            transform: translate(-40px, 40px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes slideDiagonal-2 {
  50% {
    -webkit-transform: translate(-40px, 40px);
            transform: translate(-40px, 40px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@-webkit-keyframes slideDiagonal-3 {
  50% {
    -webkit-transform: translate(-20px, 20px);
            transform: translate(-20px, 20px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes slideDiagonal-3 {
  50% {
    -webkit-transform: translate(-20px, 20px);
            transform: translate(-20px, 20px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@-webkit-keyframes slideDiagonalloading-1 {
  0% {
    -webkit-transform: translate(60px, -60px);
            transform: translate(60px, -60px);
  }
  30% {
    -webkit-transform: translate(80px, -80px);
            transform: translate(80px, -80px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes slideDiagonalloading-1 {
  0% {
    -webkit-transform: translate(60px, -60px);
            transform: translate(60px, -60px);
  }
  30% {
    -webkit-transform: translate(80px, -80px);
            transform: translate(80px, -80px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@-webkit-keyframes slideDiagonalloading-2 {
  0% {
    -webkit-transform: translate(40px, -40px);
            transform: translate(40px, -40px);
  }
  30% {
    -webkit-transform: translate(60px, -60px);
            transform: translate(60px, -60px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes slideDiagonalloading-2 {
  0% {
    -webkit-transform: translate(40px, -40px);
            transform: translate(40px, -40px);
  }
  30% {
    -webkit-transform: translate(60px, -60px);
            transform: translate(60px, -60px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@-webkit-keyframes slideDiagonalloading-3 {
  0% {
    -webkit-transform: translate(20px, -20px);
            transform: translate(20px, -20px);
  }
  30% {
    -webkit-transform: translate(40px, -40px);
            transform: translate(40px, -40px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@keyframes slideDiagonalloading-3 {
  0% {
    -webkit-transform: translate(20px, -20px);
            transform: translate(20px, -20px);
  }
  30% {
    -webkit-transform: translate(40px, -40px);
            transform: translate(40px, -40px);
  }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@-webkit-keyframes slideLeftloading {
  0% {
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
  }
  20% {
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
  }
}
@keyframes slideLeftloading {
  0% {
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
  }
  20% {
    -webkit-transform: translateX(500%);
            transform: translateX(500%);
  }
}
@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes scaleFadeIn {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes scaleFadeIn {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@-webkit-keyframes scaleOut {
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes scaleOut {
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes scaleFadeOut {
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
}
@keyframes scaleFadeOut {
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
}
@-webkit-keyframes translateBg {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes translateBg {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@-webkit-keyframes heightMd {
  0% {
    max-height: 0;
    overflow: hidden;
  }
  100% {
    max-height: 500px;
    overflow: hidden;
  }
}
@keyframes heightMd {
  0% {
    max-height: 0;
    overflow: hidden;
  }
  100% {
    max-height: 500px;
    overflow: hidden;
  }
}
@-webkit-keyframes bgIn {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes bgIn {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@-webkit-keyframes rotate360 {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes rotate360 {
  0% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes lettertop {
  0% {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  50% {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes lettertop {
  0% {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  50% {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes letterleft {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  70% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes letterleft {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  70% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: center center no-repeat;
  background-size: cover;
  opacity: 0;
  display: block;
}
.bg img {
  display: none;
}
.btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  font-weight: 500;
  border-radius: 50px;
  min-width: 120px;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(90deg, #ff2139 0%, #ab082c 50%);
  transition: color 0.2s ease;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff2139 0%, #ff2139 50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}
.btn:hover::before {
  opacity: 1;
}
.btn span {
  margin-left: 10px;
}
.btn img {
  width: 40px;
}
.btn.btn-demo {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 18px;
  min-width: 100px;
  font-weight: 500;
}
@media (min-width: 720px) {
  .btn.btn-demo {
    padding: 5px 20px;
  }
}
.dscroll {
  opacity: 0;
  -webkit-animation: none;
          animation: none;
  transition: none;
}
.dscroll--in {
  opacity: 1;
  -webkit-animation: slideFadeUp 0.5s ease both;
          animation: slideFadeUp 0.5s ease both;
}
/* ============================================================
   FAQ
   ============================================================ */
.faq {
  radius: rad;
  overflow: hidden;
  padding: 10px 0px;
}
@media (min-width: 720px) {
  .faq {
    padding: 20px 0px;
  }
}
.faq .faq__item {
  position: relative;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.07);
  background-color: #fff;
  transition: 0.4s;
  text-align: left;
  font-family: "IsidoraSans", sans-serif;
  margin-bottom: 20px;
}
.faq .faq__item.faq__open .faq__question .fa {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq .faq__question {
  margin-bottom: 0;
  padding: 15px 0px;
  transition: 0.5s;
  font-weight: 300;
  font-family: "IsidoraSans", sans-serif;
  font-style: initial;
  color: #414756;
}
@media (min-width: 720px) {
  .faq .faq__question {
    padding: 10px 0px;
    font-size: 18px;
    line-height: 24px;
  }
}
.faq .faq__question .fa {
  float: right;
  transition: 0.5s;
  color: #ffd833;
  margin-left: 10px;
}
.faq .faq__question:hover {
  cursor: pointer;
  color: #ffd833;
}
.faq .faq__answer {
  padding: 20px 0px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
@media (min-width: 720px) {
  .faq .faq__answer {
    padding: 20px 0px 20px;
  }
}
.faq .faq__answer li {
  position: relative;
  padding-left: 0px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}
.faq .faq__answer li:before {
  content: "";
  width: 5px;
  height: 5px;
  line-height: 5px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 9px;
  left: 0;
  background-color: #ffd833;
}
@font-face {
  font-family: 'IsidoraSans';
  src: url("../fonts/IsidoraSans-Light.ttf") format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'IsidoraSans';
  src: url("../fonts/IsidoraSans-Regular.ttf") format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'IsidoraSans';
  src: url("../fonts/IsidoraSans-SemiBold.ttf") format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'IsidoraSans';
  src: url("../fonts/IsidoraSans-Bold.ttf") format('opentype');
  font-weight: bold;
  font-style: normal;
}
.footer {
  position: relative;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 60px 0 0;
}
.footer .footer-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 720px) {
  .footer .footer-wrap {
    padding: 0 40px;
    max-width: 1400px;
  }
}
.footer .footer-body {
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}
@media (min-width: 720px) {
  .footer .footer-body {
    padding-bottom: 60px;
  }
}
.footer .footer-brand {
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .footer .footer-brand {
    margin-bottom: 0;
  }
}
.footer .footer-logo {
  margin-bottom: 20px;
}
.footer .footer-logo img {
  max-width: 300px;
  height: auto;
  margin: initial;
}
.footer .footer-desc {
  max-width: 90%;
}
@media (min-width: 720px) {
  .footer .footer-desc {
    max-width: 400px;
  }
}
.footer .footer-desc p {
  font-size: 14px;
  line-height: 20px;
  color: #76777a;
  margin: 0;
}
.footer .footer-bottom {
  padding: 25px 0;
}
.footer .footer-bottom-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
}
@media (min-width: 720px) {
  .footer .footer-bottom-inner {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}
.footer .socials {
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-order: 1;
      order: 1;
}
@media (min-width: 720px) {
  .footer .socials {
    -ms-flex-order: 1;
        order: 1;
  }
}
.footer .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #414756;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background-color 0.3s;
}
.footer .social-link:hover {
  background-color: #ff2139;
}
.footer .social-link span {
  color: #fff;
}
.footer .footer-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  -ms-flex-order: 3;
      order: 3;
}
@media (min-width: 720px) {
  .footer .footer-links {
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 30px;
    -ms-flex-order: 2;
        order: 2;
  }
}
.footer .footer-link {
  font-size: 12px;
  font-weight: 500;
  color: #414756;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.footer .footer-link:hover {
  color: #ff2139;
}
.footer .copyright {
  -ms-flex-order: 2;
      order: 2;
}
@media (min-width: 720px) {
  .footer .copyright {
    -ms-flex-order: 3;
        order: 3;
  }
}
.footer .copyright p {
  font-size: 12px;
  color: #76777a;
  margin: 0;
  letter-spacing: 0.3px;
}
/* ============================================================
   FOOTER VOC
   ============================================================ */
.site-footer {
  background: #2a2d35;
  padding: 60px 0 0;
}
.site-footer .footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.site-footer .footer-body {
  padding-bottom: 40px;
}
.site-footer .footer-body .grid {
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 960px) {
  .site-footer .footer-body .grid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.site-footer .footer-brand .footer-logo {
  margin-bottom: 20px;
}
.site-footer .footer-brand .footer-logo img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: initial;
}
.site-footer .footer-brand .footer-desc p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  max-width: 260px;
}
.site-footer .socials {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.site-footer .social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.site-footer .social-link:hover {
  background: rgba(255,255,255,0.3);
}
.site-footer .social-link span {
  color: #fff;
}
.site-footer .footer-nav .footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.site-footer .footer-nav .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-nav .footer-nav-list li {
  margin-bottom: 10px;
}
.site-footer .footer-nav .footer-nav-list li:before {
  display: none;
}
.site-footer .footer-nav .footer-nav-link {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
}
.site-footer .footer-nav .footer-nav-link:hover {
  color: #fff;
}
.site-footer .footer-nav .footer-nav-link .fa-angle-right {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.site-footer .footer-products .footer-products-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 24px;
}
.site-footer .footer-products .grid {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.site-footer .product-card {
  background: #353840;
  border-radius: 14px;
  padding: 20px;
}
.site-footer .product-card .product-logo {
  margin-bottom: 12px;
}
.site-footer .product-card .product-logo img {
  max-height: 28px;
  width: auto;
  display: block;
}
.site-footer .product-card .product-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 0;
}
.site-footer .footer-bottom {
  background: #222429;
  margin-top: 0;
  padding: 18px 0;
}
.site-footer .footer-bottom .footer-bottom-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
}
@media (min-width: 720px) {
  .site-footer .footer-bottom .footer-bottom-inner {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
.site-footer .footer-bottom .copyright p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.site-footer .footer-bottom .footer-links {
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.site-footer .footer-bottom .footer-link {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer .footer-bottom .footer-link:hover {
  color: #fff;
}
form,
.form {
  position: relative;
}
input,
select {
  display: block;
  width: 100%;
  padding: 15px 10px 10px;
  vertical-align: top;
  background: #fff;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 600;
}
input:focus,
select:focus {
  border-color: color;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  display: inline-block;
  border: none;
  opacity: 1;
  padding: 15px 10px 10px;
  margin-bottom: 0;
  background: url("../img/icon-select.png") 100% 50% no-repeat;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0,0,0,0.7);
}
header {
  height: 70px;
  line-height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  color: #fff;
  font-family: var(--voc-font-alt);
  transition: 0.3s;
}
/* ============================================================
   HEADER VOC
   ============================================================ */
header.site-header {
  background: #2a2d35 !important;
  box-shadow: 0px 8px 14px 0px #242425;
}
header.site-header .header-wrap {
  background: transparent;
}
header.site-header .header-logo img {
  width: 90px;
}
@media (min-width: 720px) {
  header.site-header .header-logo img {
    width: 130px;
  }
}
header.site-header .nav-menu nav ul li a {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
header.site-header .nav-menu nav ul li a:hover {
  color: #000000;
}
header.site-header .hamburger span {
  background: #fff;
}
header.site-header .header-actions .header-cta .btn-demo {
  background: var(--voc-cyan);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
}
header.site-header .header-actions .header-cta .btn-demo:hover {
  background: #26c2ee;
}
header .header-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
header .header-outer {
  height: 70px;
  line-height: 70px;
}
header .header-outer .header-ham-wrap {
  display: block;
}
@media (min-width: 960px) {
  header .header-outer .header-ham-wrap {
    display: none;
  }
}
header .header-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 10px;
}
header .header-inner {
  position: relative;
  height: 100%;
  width: 100%;
}
header .header-logo {
  -webkit-animation: fadeIn 0.4s ease;
          animation: fadeIn 0.4s ease;
}
header .header-logo img {
  width: 120px;
}
header .header-nav,
header .mobile-nav {
  display: none;
  z-index: 1;
}
header .header-nav .nav-back,
header .mobile-nav .nav-back,
header .header-nav .nav-close,
header .mobile-nav .nav-close {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  z-index: 100;
  display: none;
}
header .header-nav .nav-back div,
header .mobile-nav .nav-back div,
header .header-nav .nav-close div,
header .mobile-nav .nav-close div {
  height: 2px;
  background: #76777a;
  width: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  border-radius: 2px;
  margin-left: -7.5px;
}
header .header-nav .nav-close,
header .mobile-nav .nav-close {
  right: 0;
}
header .header-nav .nav-close div,
header .mobile-nav .nav-close div {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .header-nav .nav-close div:last-child,
header .mobile-nav .nav-close div:last-child {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
header .header-nav .nav-back,
header .mobile-nav .nav-back {
  left: 0;
  -webkit-animation: slideFadeLeft 0.5s ease;
          animation: slideFadeLeft 0.5s ease;
}
header .header-nav .nav-back div:first-child,
header .mobile-nav .nav-back div:first-child {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
}
header .header-nav .nav-back div:last-child,
header .mobile-nav .nav-back div:last-child {
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 10px;
}
header .hamburger {
  position: relative;
  background-color: transparent;
  width: 45px;
  height: 42px;
  padding: 3px 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: 5px;
  height: 45px;
  text-align: center;
  height: 25px;
}
header .hamburger span {
  display: block;
  height: 3px;
  border-radius: 5px;
  margin: 0 auto 4px;
  background: var(--voc-text);
  width: 30px;
  transition: 0.2s ease;
}
header .header-actions {
  position: relative;
  float: right;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 40px;
  line-height: 40px;
  display: none;
}
header .header-actions .header-cta {
  display: -ms-flexbox;
  display: flex;
}
header .header-actions .header-cta .btn:first-child {
  margin-right: 10px;
}
header .header-actions .header-item {
  float: left;
  min-width: 40px;
  cursor: pointer;
}
header .header-actions .header-item.header-ham-wrap {
  padding: 0px 7px;
  line-height: 45px;
}
@media (min-width: 720px) {
  header .header-actions .header-item.header-ham-wrap {
    display: none;
  }
}
@media (max-width: 1090px) {
  header .mobile-nav {
    display: none;
    line-height: 22px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: right;
    z-index: 9999999;
  }
  header .mobile-nav .mobile-nav__overlay {
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    opacity: 0;
  }
  header .mobile-nav .nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--voc-text);
    color: #fff;
    -webkit-animation: slideLeft 0.5s ease;
            animation: slideLeft 0.5s ease;
    overflow-y: scroll;
    border-top: 5px solid $darkblue;
    max-width: 70%;
  }
  header .mobile-nav .nav-panel .mobile-nav__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 20px;
  }
  header .mobile-nav .nav-panel .mobile-nav__header .mobile-nav__logo img {
    width: 80px;
  }
  header .mobile-nav .nav-panel .mobile-nav__body {
    padding: 20px;
    padding-top: 0;
    padding-bottom: 0;
  }
  header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul {
    padding-bottom: 0;
    text-align: right;
  }
  header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul li:last-child {
    border-bottom: 0;
  }
  header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul li a {
    color: #fff;
    font-weight: 500;
    padding: 15px 0px;
    display: block;
    font-size: 16px;
    line-height: 22px;
  }
  header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul li a .fa {
    float: left;
    opacity: 0.5;
    margin-left: 10px;
    position: relative;
    top: 4px;
    font-size: 18px;
  }
  header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul li ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    box-shadow: $shadow;
    z-index: 2;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: 100vh;
    padding: 10px 20px;
    padding-top: 55px;
    border-top: 1px solid rgba(0,0,0,0.07);
  }
  header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul li ul li a {
    font-weight: 300;
  }
  header .mobile-nav .nav-panel .mobile-nav__footer {
    padding: 20px;
  }
  header .mobile-nav .nav-panel .mobile-nav__footer .mobile-nav__actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom: 10px;
  }
  header .mobile-nav .nav-panel .mobile-nav__footer .mobile-nav__actions .btn {
    max-width: 100%;
    width: 100%;
  }
  header .mobile-nav .nav-panel .mobile-nav__footer .mobile-nav__actions .btn:first-child {
    margin-bottom: 10px;
  }
  header .mobile-nav .nav-bg {
    -webkit-animation: fadeIn 0.5s ease;
            animation: fadeIn 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 5000%;
    background: var(--voc-text);
    opacity: 0.5;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  header .mobile-nav .nav-close {
    display: block;
  }
}
@media (min-width: 960px) {
  header {
    height: 80px;
    line-height: 80px;
  }
  header .header-wrap {
    padding: 0 40px;
  }
  header .header-wrap .header-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
  header .header-wrap .header-nav .nav-menu nav {
    margin-right: 20px;
  }
  header .header-outer {
    height: 80px;
    line-height: 80px;
  }
  header .header-outer .header-inner {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  header .header-logo {
    margin-left: 0px;
    margin-right: 40px;
    line-height: 85px;
    width: 160px;
  }
  header .header-logo img {
    width: 160px;
  }
  header .hamburger {
    margin-right: -20px;
  }
  header .header-nav {
    transition: ease-in-out all 0s;
  }
  header .header-nav .nav-back {
    display: none;
  }
  header .header-nav ul {
    padding-top: 0;
    display: inline-block;
  }
}
@media (min-width: 960px) {
  header .header-logo {
    margin-left: 0px;
    margin-right: 40px;
    width: 180px;
  }
  header .header-logo img {
    width: 180px;
  }
  header .header-actions {
    display: -ms-flexbox;
    display: flex;
  }
  header .header-nav {
    display: inline-block;
  }
  header .header-nav ul li {
    display: inline-block;
    position: relative;
  }
  header .header-nav ul li a {
    letter-spacing: 0.5px;
    position: relative;
    padding: 15px 25px;
    line-height: 50px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--voc-text);
    border-radius: 100px;
  }
  header .header-nav ul li a .fa {
    margin-left: 5px;
  }
  header .header-nav ul li:hover a {
    background-color: var(--voc-gray-light);
    font-weight: 600;
  }
}
@media (max-width: 1090px) {
  .site-header .mobile-nav .nav-panel {
    background: #2a2d35;
    border-top: 5px solid var(--voc-cyan);
  }
  .site-header .mobile-nav .nav-panel .mobile-nav__header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-header .mobile-nav .nav-panel .mobile-nav__header .mobile-nav__logo img {
    width: 100px;
  }
  .site-header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-header .mobile-nav .nav-panel .mobile-nav__body .mobile-nav__menu ul li a {
    color: #fff;
    font-size: 15px;
    padding: 14px 0;
  }
  .site-header .mobile-nav .nav-panel .mobile-nav__footer .btn-demo {
    background: var(--voc-cyan);
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .site-header .mobile-nav .nav-close div {
    background: #fff;
  }
  .site-header .mobile-nav .nav-back div {
    background: #fff;
  }
}
@-webkit-keyframes loaderRotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loaderRotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loaderDash {
  0% {
    stroke-dasharray: 0, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -20px;
  }
  100% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -125px;
  }
}
@keyframes loaderDash {
  0% {
    stroke-dasharray: 0, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -20px;
  }
  100% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -125px;
  }
}
/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  display: none;
  padding-top: 70px;
  transition: 0.5s;
}
@media (min-width: 720px) {
  .modal {
    padding-top: 0;
  }
}
.modal.modal--in {
  display: table;
  -webkit-animation: fadeIn 0.1s ease;
          animation: fadeIn 0.1s ease;
}
.modal.modal--out {
  display: table;
  -webkit-animation: fadeOut 1s ease both;
          animation: fadeOut 1s ease both;
}
section {
  position: relative;
  background-color: #fff;
  color: var(--voc-text);
  overflow: hidden;
  text-align: left;
}
section .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section .section-title {
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--voc-font);
}
section p {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
}
section .section-subtitle {
  display: inline-block;
  color: var(--voc-yellow);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}
section .section-content {
  padding: 20px;
}
section .section-header {
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  section .section-header {
    margin-bottom: 80px;
  }
}
@media (min-width: 720px) {
  section .section-header .section-title {
    font-size: 50px;
    line-height: 60px;
    font-weight: 300;
  }
}
section .section-header .section-title strong {
  font-weight: bold;
}
section .section-content {
  position: relative;
  color: var(--voc-text);
  line-height: 26px;
  font-size: 17px;
  text-align: left;
}
section .section-content>* {
  -webkit-animation: slideFadeUp 0.5s ease backwards;
          animation: slideFadeUp 0.5s ease backwards;
}
section .section-content>*:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
section .section-content>*:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
section .section-content>*:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
section .section-content>*:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
section .section-content>*:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
section .section-content ul {
  margin-bottom: 20px;
}
section .section-content ul li:before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -5px;
  width: 6px;
  height: 6px;
  text-align: center;
  border-radius: 50%;
  overflow: initial;
  background-color: var(--voc-red);
}
section .wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media (min-width: 720px) {
  section .wrap {
    padding: 80px 60px;
    max-width: 1400px;
  }
}
.section-title {
  font-size: 36px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .section-title {
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 40px;
  }
}
.section-title strong {
  background: linear-gradient(90deg, var(--voc-red) 0%, var(--voc-red-dark) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
p {
  font-weight: 600;
}
/* ============================================================
   HERO
   ============================================================ */
section.hero {
  background: #2a2d35;
  color: #fff;
  overflow: hidden;
  margin-top: 70px;
}
@media (min-width: 720px) {
  section.hero {
    margin-top: 80px;
  }
}
section.hero .wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 20px;
}
@media (min-width: 720px) {
  section.hero .wrap {
    padding: 100px 40px;
  }
}
section.hero .section-body .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 30px;
}
@media (min-width: 960px) {
  section.hero .section-body .grid {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
    gap: 0;
  }
}
@media (min-width: 960px) {
  section.hero .section-content {
    padding-right: 20px;
  }
}
section.hero .eyebrow {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-bottom: 28px;
}
section.hero .eyebrow .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--voc-green);
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-animation: badgePulse 2s ease-in-out infinite;
          animation: badgePulse 2s ease-in-out infinite;
}
section.hero .section-title {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 960px) {
  section.hero .section-title {
    font-size: 44px;
  }
}
section.hero .section-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--voc-cyan), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.15em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
section.hero .section-img {
  text-align: center;
}
@media (min-width: 960px) {
  section.hero .section-img {
    padding: 0 10px;
  }
}
section.hero .section-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 960px) {
  section.hero .section-info {
    padding-left: 20px;
  }
}
section.hero .section-info p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
section.hero .checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
section.hero .checklist li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
section.hero .checklist li:before {
  display: none;
}
section.hero .checklist li .fa-circle-check {
  color: var(--voc-cyan);
  font-size: 16px;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.hero .section-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 12px;
}
section.hero .btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 40px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
section.hero .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
section.hero .btn-play {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 8px;
  background: var(--voc-cyan);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
section.hero .btn-play:hover {
  background: #26c2ee;
}
section.hero .btn-play .fa-circle-play {
  font-size: 16px;
}
/* ============================================================
   LOGOS CLIENTES
   ============================================================ */
section.brands {
  background: #fff;
}
section.brands .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
section.brands .section-header {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
}
section.brands .section-header .section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--voc-dark);
  line-height: 32px;
}
@media (min-width: 960px) {
  section.brands .section-header .section-title {
    font-size: 36px;
    line-height: 48px;
  }
}
section.brands .section-body {
  position: relative;
}
section.brands .section__brand {
  -ms-flex: 0 0 calc(50% - 10px);
      flex: 0 0 calc(50% - 10px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 15px;
}
@media (min-width: 720px) {
  section.brands .section__brand {
    -ms-flex: 0 0 calc(33.333% - 27px);
        flex: 0 0 calc(33.333% - 27px);
  }
}
@media (min-width: 960px) {
  section.brands .section__brand {
    -ms-flex: 0 0 calc(20% - 32px);
        flex: 0 0 calc(20% - 32px);
  }
}
section.brands .section__brand img {
  max-height: 32px;
  max-width: 100%;
  width: auto;
  height: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
section.brands .section__brand img:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
}
/* ============================================================
   COBERTURA
   ============================================================ */
section.coverage .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
section.coverage .section-body .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 24px;
}
@media (min-width: 960px) {
  section.coverage .section-body .grid {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}
section.coverage .text--grad {
  background: linear-gradient(90deg, var(--voc-cyan), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
section.coverage .text--red {
  color: #ef4444;
}
section.coverage .text--green {
  color: var(--voc-green);
}
section.coverage .card {
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}
section.coverage .card--dark {
  background: #2a2d35;
  color: #fff;
}
section.coverage .card--dark .card-icon {
  margin-bottom: 20px;
}
section.coverage .card--dark .card-icon img {
  width: 36px;
  height: auto;
  margin: initial;
}
section.coverage .card--dark .card-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #fff;
}
@media (min-width: 960px) {
  section.coverage .card--dark .card-title {
    font-size: 30px;
  }
}
section.coverage .card--dark .card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
section.coverage .card--dark .card-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}
section.coverage .card--dark .card-item {
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
section.coverage .card--dark .card-item .item-icon {
  color: #37c4f8;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
section.coverage .card--dark .card-item .item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #37c4f8;
  margin-bottom: 4px;
}
section.coverage .card--dark .card-item .item-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
  line-height: 1.5;
}
section.coverage .card--light {
  background: #ededed;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
section.coverage .card--light .card-title {
  font-weight: 700;
  color: var(--voc-dark);
  margin-bottom: 28px;
}
section.coverage .card--light .card-title--center {
  text-align: center;
}
section.coverage .bar-group {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 24px;
  border-radius: 20px;
}
section.coverage .bar-group:last-of-type {
  margin-bottom: 28px;
}
section.coverage .bar-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 8px;
}
section.coverage .bar-header span {
  font-size: 13px;
  font-weight: 600;
  color: var(--voc-text-dark);
}
section.coverage .bar-header span.text--red {
  color: #ef4444;
}
section.coverage .bar-header span.text--green {
  color: var(--voc-green);
}
section.coverage .progress-bar {
  width: 100%;
  height: 10px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}
section.coverage .progress-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
section.coverage .progress-fill.progress-fill--red {
  background: #ef4444;
}
section.coverage .progress-fill.progress-fill--green {
  background-color: #71c659;
}
section.coverage .bar-caption {
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  margin-bottom: 0;
}
section.coverage .impact-note {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
section.coverage .impact-note .fa-circle-check {
  color: var(--voc-cyan);
  font-size: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
section.coverage .impact-note p {
  font-size: 13px;
  color: var(--voc-text-dark);
  line-height: 1.55;
  margin-bottom: 0;
}
section.coverage .impact-note p strong {
  font-weight: 700;
  color: var(--voc-dark);
}
/* ============================================================
   INTELIGENCIA 360°
   ============================================================ */
section.solutions {
  position: relative;
  overflow: hidden;
}
section.solutions .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
section.solutions .section-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30,30,38,0.75);
  z-index: 1;
}
section.solutions .wrap {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}
section.solutions .section-header {
  text-align: center;
  margin-bottom: 50px;
}
section.solutions .section-header .eyebrow {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 20px;
}
section.solutions .section-header .eyebrow .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--voc-green);
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.solutions .section-header .section-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  font-style: italic;
  margin-bottom: 14px;
}
@media (min-width: 960px) {
  section.solutions .section-header .section-title {
    font-size: 44px;
  }
}
section.solutions .section-header .section-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}
section.solutions .section-body .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 20px;
}
@media (min-width: 960px) {
  section.solutions .section-body .grid {
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 20px;
  }
}
section.solutions .card--purple {
  background: #7c3aed;
  border-radius: 20px;
  padding: 28px;
  color: #fff;
  margin-bottom: 0;
}
section.solutions .card--purple .card-letter {
  font-size: 40px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: 4px;
}
section.solutions .card--purple .card-head {
  margin-bottom: 14px;
}
section.solutions .card--purple .card-head strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
section.solutions .card--purple .card-head span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}
section.solutions .card--purple .card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
section.solutions .card--purple .card-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.solutions .card--purple .card-checks li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}
section.solutions .card--purple .card-checks li:before {
  display: none;
}
section.solutions .card--purple .card-checks li .fa-circle-check {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.solutions .section-media {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 16px;
}
section.solutions .section-media img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
/* ============================================================
   TIMELINE / PLATAFORMA
   ============================================================ */
section.timeline {
  background: #fff;
}
section.timeline .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
section.timeline .section-header {
  text-align: center;
  margin-bottom: 50px;
}
section.timeline .section-header .section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--voc-dark);
  margin-bottom: 14px;
}
@media (min-width: 960px) {
  section.timeline .section-header .section-title {
    font-size: 40px;
  }
}
section.timeline .section-header .section-subtitle {
  font-size: 15px;
  color: var(--voc-text-muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}
section.timeline .timeline-steps {
  position: relative;
}
section.timeline .step-numbers {
  display: none;
}
@media (min-width: 960px) {
  section.timeline .step-numbers {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-align: center;
        align-items: center;
    position: relative;
    margin-bottom: 30px;
    padding: 0 40px;
  }
}
section.timeline .step-line {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 0;
  border-top: 3px dotted var(--voc-cyan);
  z-index: 0;
}
section.timeline .step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--voc-cyan);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.timeline .timeline-steps .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  section.timeline .timeline-steps .grid {
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 16px;
  }
}
section.timeline .step-card {
  border: 2px solid transparent;
  border-radius: 16px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #37c4f8, #572ba6) border-box;
  padding: 24px;
  text-align: center;
  height: 100%;
}
section.timeline .step-card .step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--voc-dark);
  margin-bottom: 8px;
}
section.timeline .step-card .step-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--voc-dark);
  margin-bottom: 12px;
}
section.timeline .step-card p {
  font-size: 13px;
  color: var(--voc-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}
/* ============================================================
   CAPACIDADES IA
   ============================================================ */
section.ai-section {
  background: #f5f5f5;
}
section.ai-section .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
section.ai-section .card--ai {
  background: #2a2d35;
  border-radius: 24px;
  overflow: hidden;
}
section.ai-section .card--ai .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media (min-width: 960px) {
  section.ai-section .card--ai .grid {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
section.ai-section .card-deco {
  position: relative;
  min-height: 200px;
}
@media (min-width: 960px) {
  section.ai-section .card-deco {
    min-height: auto;
  }
}
section.ai-section .card-deco:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
section.ai-section .card-deco:after {
  content: '';
  position: absolute;
  top: 30%;
  left: 30%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
section.ai-section .card-content {
  padding: 40px 40px 40px 20px;
}
@media (max-width: 1090px) {
  section.ai-section .card-content {
    padding: 30px;
  }
}
section.ai-section .card-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--voc-cyan);
  margin-bottom: 12px;
}
@media (min-width: 960px) {
  section.ai-section .card-title {
    font-size: 34px;
  }
}
section.ai-section .card-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 30px;
}
section.ai-section .features-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 24px;
}
section.ai-section .feature {
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
section.ai-section .feature .feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--voc-cyan);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.ai-section .feature .feature-icon span {
  color: #fff;
  font-size: 18px;
}
section.ai-section .feature .feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
section.ai-section .feature .feature-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 0;
}
/* ============================================================
   RESULTADOS / TABS
   ============================================================ */
section.results .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
section.results .boxtab {
  background: #572ba6;
  border-radius: 24px;
  padding: 40px;
}
section.results .section-header {
  text-align: center;
  margin-bottom: 24px;
}
section.results .section-header .section-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
@media (min-width: 960px) {
  section.results .section-header .section-title {
    font-size: 36px;
  }
}
section.results .tabs-nav-wrap {
  text-align: center;
  margin-bottom: 30px;
}
section.results .tabs-nav {
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
section.results .tab-item:before {
  display: none;
}
section.results .tab-item a {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}
section.results .tab-item.active a,
section.results .tab-item:hover a {
  background: var(--voc-cyan);
  color: #fff;
}
section.results .tab-content {
  display: none;
}
section.results .tab-content.active {
  display: block;
}
section.results .tab-panel .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
  -ms-flex-align: stretch;
      align-items: stretch;
}
@media (min-width: 960px) {
  section.results .tab-panel .grid {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
  }
}
section.results .result-card {
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}
section.results .result-card .result-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--voc-cyan);
  display: block;
  margin-bottom: 10px;
}
section.results .result-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 4px;
}
section.results .result-card--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
}
section.results .result-card--light {
  background: rgba(255,255,255,0.1);
}
section.results .result-card--cyan {
  background: var(--voc-cyan);
}
section.results .result-card--cyan .result-label {
  color: rgba(255,255,255,0.7);
}
section.results .result-card--cyan p {
  color: #fff;
}
section.results .result-card--cyan strong {
  font-weight: 800;
  font-size: 15px;
}
section.results .result-arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
}
section.results .result-arrow .fa-arrow-right {
  color: rgba(255,255,255,0.4);
  font-size: 20px;
}
/* ============================================================
   BENEFICIOS
   ============================================================ */
section.benefits {
  background: var(--voc-cyan);
}
section.benefits .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
section.benefits .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
}
section.benefits .section-header .section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--voc-dark);
  margin-bottom: 14px;
}
@media (min-width: 960px) {
  section.benefits .section-header .section-title {
    font-size: 36px;
  }
}
section.benefits .section-header .section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--voc-dark);
  line-height: 1.65;
  margin: 0 auto;
  text-transform: initial;
}
section.benefits .section-body .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  section.benefits .section-body .grid {
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 16px;
  }
}
section.benefits .benefit {
  background: rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}
section.benefits .benefit .benefit-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
section.benefits .benefit .benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--voc-cyan);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.benefits .benefit .benefit-icon span {
  color: #fff;
  font-size: 16px;
}
section.benefits .benefit strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--voc-dark);
}
section.benefits .benefit p {
  font-size: 13px;
  color: var(--voc-dark);
  line-height: 1.55;
  margin-bottom: 0;
}
section.benefits .benefit p .fa-circle-check {
  color: var(--voc-dark);
  font-size: 12px;
}
/* ============================================================
   TESTIMONIOS
   ============================================================ */
section.testimonials {
  background: #ededed;
}
section.testimonials .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
section.testimonials .section-header {
  text-align: center;
  margin-bottom: 40px;
}
section.testimonials .section-header .section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--voc-dark);
}
@media (min-width: 960px) {
  section.testimonials .section-header .section-title {
    font-size: 36px;
  }
}
section.testimonials .section-body .grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 16px;
}
@media (min-width: 960px) {
  section.testimonials .section-body .grid {
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 20px;
  }
}
section.testimonials .testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
section.testimonials .testimonial .quote-mark {
  font-size: 48px;
  font-weight: 800;
  color: var(--voc-cyan);
  line-height: 1;
  margin-bottom: 8px;
}
section.testimonials .testimonial .quote-text {
  font-size: 13px;
  font-style: italic;
  color: var(--voc-text-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
section.testimonials .testimonial .author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
}
section.testimonials .testimonial .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e5e7eb;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--voc-text-dark);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.testimonials .testimonial .author-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--voc-dark);
}
section.testimonials .testimonial .author-info span {
  font-size: 12px;
  color: var(--voc-text-muted);
}
/* ============================================================
   CONTACTO / FORMULARIO
   ============================================================ */
section.contact {
  background: #fff;
}
section.contact .section-body {
  background: linear-gradient(135deg, #37c4f8, #572ba6);
  border-radius: 24px;
  padding: 20px;
}
@media (min-width: 960px) {
  section.contact .section-body {
    padding: 40px;
  }
}
@media (min-width: 960px) {
  section.contact .grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 40px;
  }
}
section.contact .form-section {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: none;
  margin-bottom: 30px;
}
@media (min-width: 960px) {
  section.contact .form-section {
    margin-bottom: 0;
    padding: 36px;
  }
}
section.contact .form-section .form-title {
  font-size: 34px;
  font-weight: 700;
  background: linear-gradient(135deg, #37c4f8, #5e7fe8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1.2;
  text-align: center;
}
section.contact .form-section .form-subtitle {
  font-size: 15px;
  color: var(--voc-dark);
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 960px) {
  section.contact .faq-section {
    padding-left: 20px;
  }
}
section.contact .faq-section .faq-icon {
  margin-bottom: 20px;
}
section.contact .faq-section .faq-icon img {
  width: 50px;
  margin: initial;
}
section.contact .faq-section .faq-title {
  color: #fff;
}
section.contact .section__brand {
  margin-top: 30px;
  text-align: right;
}
section.contact .section__brand img {
  max-width: 140px;
  opacity: 0.9;
}
section.contact .faq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 10px;
}
section.contact .faq__item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
section.contact .faq__question {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
}
section.contact .faq__question span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--voc-dark);
  -ms-flex: 1;
      flex: 1;
  padding-right: 12px;
}
section.contact .faq__question .fa-chevron-down {
  color: #7c3aed;
  font-size: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
section.contact .faq__answer {
  display: none;
  padding: 0 18px 14px;
}
section.contact .faq__answer p {
  font-size: 13px;
  color: var(--voc-text-muted);
  margin-bottom: 0;
}
section.contact .faq__item.faq__open .faq__answer {
  display: block;
}
section.contact .contact-form .form-row {
  margin-bottom: 18px;
}
section.contact .contact-form .form-row .form-group {
  -ms-flex: 1;
      flex: 1;
}
section.contact .contact-form .form-row .form-group label {
  display: block;
  font-size: 14px;
  color: #5e3a9e;
  margin-bottom: 8px;
  font-weight: 600;
}
section.contact .contact-form .form-row.form-row--submit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 6px;
  margin-bottom: 0;
}
section.contact .contact-form input,
section.contact .contact-form select {
  border: 2px solid #5e3a9e;
  border-radius: 40px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--voc-text-dark);
  background: #fff;
  width: 100%;
  -webkit-appearance: none;
}
section.contact .contact-form input:focus,
section.contact .contact-form select:focus {
  outline: none;
  border-color: #5e3a9e;
  box-shadow: 0 0 0 3px rgba(94,58,158,0.1);
}
section.contact .btn-submit {
  background: #37c4f8;
  color: var(--voc-dark);
  border: none;
  border-radius: 40px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
section.contact .btn-submit span.fa {
  font-size: 14px;
}
section.contact .btn-submit:hover {
  background: #28c0f7;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(55,196,248,0.3);
}
section.contact .disclaimer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  -ms-flex-pack: center;
      justify-content: center;
}
section.contact .disclaimer span.fa {
  color: var(--voc-dark);
  font-size: 16px;
}
section.contact .disclaimer p {
  font-size: 14px;
  color: var(--voc-dark);
  margin-bottom: 0;
  font-weight: 400;
}
@-webkit-keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.4;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@keyframes badgePulse {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.4;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format('woff');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: var(--voc-red);
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
}
:root {
  --swiper-navigation-size: 24px;
/*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-arrow-right:before{content:"\f061"}.fa-chevron-down:before{content:"\f078"}.fa-angle-right:before{content:"\f105"}.fa-rocket:before{content:"\f135"}.fa-youtube:before{content:"\f167"}

