/*
Theme Name: sumapay
Author: Hivent
Version: 1.0.0
*/

/*******

NUEVO ******

************/

/* ========== Base: tipografías, variables y reset ========== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Roboto:wght@400;500&display=swap");

h1,
h2,
h3 {
  font-family: "Inter", sans-serif;
}

p {
  font-family: "Roboto", sans-serif;
}

/* Variables de tema (colores, radios, sombras) */
:root {
  --bg-hero: #06111a;
  --text: #eaf3ff;
  --muted: #a9c3d9;
  --accent: #3ad1f2;
  --btn-bg: #0e2b63;
  --btn-bg-hover: #16375a;
  --radius: 14px;
  --sombra-iluminacion: 0px 4px 68px 0px rgba(50, 214, 255, 0.486);
}

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* ========== Hero: layout general y navbar ========== */
.hero {
  position: relative;
  /*min-height: 100vh;*/
  min-height: 89vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: url("/wp-content/uploads/2025/11/background-Home.png") no-repeat
    center / cover;
}

/* Navbar flotante con vidrio esmerilado */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 5;
  margin-top: 3rem;
  width: 100%;
}

.navbar-container {
  width: 60%;
  padding: 5px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.185);
  border: 1px solid rgba(255, 255, 255, 0.623);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-around;
}

.navbar-logo {
  height: auto;
  max-width: 248px;
  display: block;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 5rem;
  margin: 0;
  padding: 0;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.85;
  padding: 8px 10px;
  display: block;
  font-size: 20px;
}

.navbar-menu a:hover {
  opacity: 1;
}

/* Contenido central del hero y tarjetas decorativas */
.hero-content {
  /* display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 80vh;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;*/
  display: flex;
  justify-content: center;
  width: 100%;
  /*min-height: 900px;*/
  min-height: 580px;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  margin-top: 80px;
}

/* ========== Hero: tarjetas interactivas y popovers ========== */
/* Contenedor de tarjetas posicionadas absolutas */
.hero-cards {
  position: absolute;
  width: 100%;
  inset: 0;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-cards > div {
  width: 25%;
  height: auto;
  max-height: 610px;
  z-index: 2;
}

/* Card: Despensa (celeste) */
.card-despensa {
  position: relative;
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
  top: 30px;
  right: 80px;
}

.card-despensa:hover {
  cursor: pointer;
}

.card-despensa .img-card {
  position: absolute;
  transition: transform 0.3s ease-in-out;
  /* top: 0px;
  left: 70px;*/
  top: -78px;
  left: 0px;
}

.card-despensa:hover .img-card {
  transform: rotate(8deg) translateX(5px) scale(1.1);
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
}

.despensa {
  top: 202px;
  left: 150px;
  transition: opacity 0.3s ease-in-out;
}

.card-despensa:hover .despensa {
  opacity: 0;
}

/* Popover genérico de info (inicialmente oculto) */
.info-popover {
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  border-radius: 16px;
  top: 230px;
  left: 20px;
  z-index: 10;
  pointer-events: none;
}

/* Hover effect para card-despensa info-popover */
.card-despensa:hover .info-popover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(-60px);
}

/* Card: Viáticos */
.card-viaticos {
  position: relative;
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
  top: 140px;
  left: -130px;
}

.card-viaticos:hover {
  cursor: pointer;
}

.card-viaticos .img-card {
  position: absolute;
  transition: transform 0.3s ease-in-out;
  bottom: 30px;
  left: 19px;
  top: 111px;
}

.card-viaticos:hover .img-card {
  transform-origin: center center;
  transform: scale(1.1) rotate(-16deg) translateX(5px);
  transition: transform 0.3s ease-in-out;
}

.viaticos {
  bottom: 100px;
  right: auto;
  left: 183px;
  transition: opacity 0.3s ease-in-out;
  top: 277px;
}

.card-viaticos:hover .viaticos {
  opacity: 0;
}

.card-viaticos .info-popover {
  width: auto;
  bottom: 0px;
  top: 257px;
  left: 0px;
}

.card-viaticos:hover .info-popover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateX(70px);
}

/* Card: Combustible (gris) */
.card-combustible {
  position: relative;
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
  top: 150px;
  right: -40px;
}

.card-combustible:hover {
  cursor: pointer;
}

.card-combustible .img-card {
  position: absolute;
  transition: transform 0.3s ease-in-out;
  bottom: 20px;
  top: 130px;
}

.card-combustible:hover .img-card {
  transform: rotate(-12deg) translateX(5px) scale(1.1);
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
}

.combustible {
  bottom: 86px;
  right: -55px;
  top: 289px;
  transition: opacity 0.3s ease-in-out;
}

.card-combustible:hover .combustible {
  opacity: 0;
}

.card-combustible .info-popover {
  width: auto;
  top: 250px;
  right: -270px;
  left: auto;
  bottom: 0;
}

.card-combustible:hover .info-popover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateX(-60px);
}

/* Card: Plus (negra) */
.card-plus {
  position: relative;
  transition: transform 0.3s ease-in-out;
  transform-origin: bottom left;
  top: 30px;
  left: 90px;
}

.card-plus:hover {
  cursor: pointer;
}

.card-plus .img-card {
  position: absolute;
  transition: transform 0.3s ease-in-out;
  top: -50px;
  right: 100px;
}

.card-plus:hover .img-card {
  transform: rotate(12deg) translateX(5px) scale(1.1);
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
}

.plus {
  right: 90px;
  top: 95px;
  transition: opacity 0.3s ease-in-out;
}

.card-plus:hover .plus {
  opacity: 0;
}

.card-plus .info-popover {
  width: auto;
  top: 146px;
  left: auto;
  right: 10px;
  bottom: 60px;
}

.card-plus:hover .info-popover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(-60px);
}

.icon-card {
  position: absolute;
  backdrop-filter: blur(16px);
  border-radius: 50%;
}

/* ========== Hero: textos, iconos y CTA ========== */
.hero-text {
  max-width: 657px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.hero h1 {
  margin: 0 0 12px;
  line-height: 1.05;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4.25rem);
}

.hero .highlight {
  color: var(--accent);
}

.hero-description {
  margin: 0 auto clamp(16px, 2.5vw, 28px);
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-icons {
  list-style: none;
  margin: 0 auto clamp(18px, 3vw, 28px);
  padding: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.glass-circle {
  width: 40px;
  height: 40px;
}

.hero-btn {
  width: 280px;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--btn-bg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: auto;
}

.hero-btn:hover {
  background: var(--btn-bg-hover);
}

/* Separador luminoso al final del hero */
.separador-hero {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  filter: blur(0.3px);
}

/* ========== Funcionalidades: layout general ========== */
.funcionalidades-app {
  background: url("/wp-content/uploads/2025/11/BGFuncionalidades.png") no-repeat
    center / cover;
  background-position: top;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.funcionalidades-app h2 {
  padding: 30px 0;
  font-size: clamp(2.5rem, 4vw, 64px);
}

.funcionalidades-app .highlight {
  color: var(--accent);
}

.contenedor-funcionalidades {
  display: flex;
  width: 75%;
  margin-bottom: 4rem;
}

.feature-layout {
  width: 80vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.brand-logos {
  display: inline-flex;
  width: max-content;
  gap: 1rem;
  align-items: center;
  overflow-x: auto;
}

/* ========== Slider de funcionalidades ========== */
/* Viewport recorta el carrusel; inner se desplaza; slide ocupa 100% */
.feature-slider {
  display: flex;
  align-items: center;
  max-width: 600px;
  width: 100%;
  gap: 10px;
}

.slider-viewport {
  width: 90%;
  flex: 1 1 auto;
  overflow: hidden;
  position: relative;
}

.slider-inner {
  display: flex;
  will-change: transform;
}

.slider-inner.is-animating {
  transition: transform 0.4s ease-in-out;
}

.slider-slide {
  flex: 0 0 auto;
  min-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  padding-right: 3px;
}

/* Botones de navegación (con estados y animaciones) */
.slider-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  transition: opacity 0.3s;
}

.slider-btn:hover {
  opacity: 0.8;
}

.slider-btn img {
  width: 40px;
  height: auto;
  display: block;
}

.slider-btn.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.next-btn,
.prev-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* Efecto de relleno al hover (pseudo-fondo interno) */
.next-btn::before,
.prev-btn::before {
  content: "";
  position: absolute;
  inset: 6px;
  aspect-ratio: 1/1;
  background: #fff;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.35s ease;
  z-index: -1;
  border-radius: inherit;
  margin-top: 3px;
}

.next-btn:hover::before,
.prev-btn:hover::before {
  transform: scale(1);
}

/* Micro desplazamiento */
.next-btn:hover,
.prev-btn:hover {
  transform: translateY(-2px);
}

/* Tinte del icono hacia --accent al hover */
.next-btn img,
.prev-btn img {
  transition: filter 0.35s ease;
}

.next-btn:hover img,
.prev-btn:hover img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(60%) saturate(600%)
    hue-rotate(160deg);
}

/* ========== Productos: carrusel comprimido y grilla expandida ========== */
.productos {
  padding-top: 4rem;
  text-align: center;
}

.productos header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.productos h2 {
  font-size: 64px;
}

.productos header p {
  font-size: 32px;
  padding-top: 2rem;
}

.productos .title-article {
  padding: 3rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--accent);
}

.productos .highlight {
  color: var(--accent);
}

.productos ul {
  list-style: none;
}

/* Estilo de tarjetas */
.productos li {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  width: 362px;
  height: 470px;
  margin-top: 45px;
}

.productos li h3 {
  text-align: start;
  font-size: clamp(1.5rem, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  font-size: 32px;
}

.text-article {
  margin: 20px;
}

.text-article p {
  text-align: start;
  font-size: 20px;
  margin-top: 16px;
}

/* Vista cerrada: 3 completas + 1/4 (scroll oculto) */
.productos {
  --card-w: 360px;
  --card-gap: 12px;
}

#productos-lista {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--card-gap);
  overflow: hidden;
  padding: 0 var(--card-gap);
  margin: 10px 0 0 10vw;
}

#productos-lista > li {
  flex: 0 0 var(--card-w);
}

/* Vista abierta: grilla 3 columnas */
.productos.is-open #productos-lista {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  padding: 0;
  border-radius: 0;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.productos.is-open #productos-lista > li {
  flex: initial;
}

/* Lista de tarjetas “regalo” (solo visible al abrir) */
.lista-regalo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  padding: 0;
  margin: 24px auto;
  max-width: 1240px;
}

.lista-regalo .text-article h3 .c-celeste {
  color: #2fbbdf;
}

/* Layout interno de cards */
#productos-lista article,
.lista-regalo article {
  display: flex;
  flex-direction: column;
  width: 362px;
}

#productos-lista figure,
.lista-regalo figure {
  margin: 0 0 12px 0;
  width: 362px;
  height: 215px;
}

#productos-lista img,
.lista-regalo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Botones “ver más / ver menos” */
.contenedor-btn {
  display: flex;
  justify-content: end;
  width: 100%;
  margin-top: 1.2rem;
}

#btn-mas,
#btn-menos {
  background: none;
  border: none;
  padding: 0;
  margin-right: 12rem;
  margin-bottom: 2rem;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  font-size: clamp(1rem, 3vw, 32px);
  font-family: inherit;
}

/* ========== Marcas (logos con marquee) ========== */
.logo-marquee-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: url("/wp-content/uploads/2025/11/Bg-marcas.png");
  color: var(--text);
  width: 100%;
  height: 80vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-x: clip;
  position: relative;
  contain: paint;
}

.contenedor-celular {
  height: 100%;
  z-index: 2;
  margin-top: 4rem;
}

.contenedor-marcas {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  align-self: flex-end;
  padding-bottom: 0px;
  overflow-x: clip;
  contain: paint;
}

.logo-marquee-section .highlight {
  color: var(--accent);
}

.cen {
  display: flex;
}

.logo-marquee-section header {
  align-self: flex-start;
  padding-top: 100px;
  padding-left: 0px;
}

.logo-marquee-section header h2 {
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  margin-bottom: 40px;
  text-align: start;
}

.logo-marquee-section img {
  max-width: 632px;
  height: auto;
  margin: 30px 0;
}

/* Carril de logos con máscara y animación */
.logo-marquee-container {
  width: 100%;
  position: relative;
  overflow-x: clip;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.logo-track {
  list-style: none;
  gap: 64px;
  padding: 0;
  display: inline-flex;
  will-change: transform;
  animation: marquee-scroll 20s linear infinite;
}

.logo-marquee-container:hover .logo-track {
  animation-play-state: paused;
}

.logo-track li {
  display: inline-block;
  padding: 0 32px;
  flex-shrink: 0;
}

.logo-track img {
  height: 66px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-track img:hover {
  opacity: 1;
}

.bottom-marquee .logo-track {
  animation-direction: reverse;
  animation-duration: 25s;
}

@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

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

/* ========== Download / CTA / Footer ========== */
.download {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contenedor-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 70%;
  height: 517px;
  border: 1px solid #fff;
  border-radius: 50px;
  max-height: 517px;
}

.contenedor-download h3 {
  font-size: clamp(2rem, 3vw, 50px);
  text-align: center;
}

.down-buttons {
  display: flex;
  width: 50%;
  justify-content: space-around;
  gap: 20px;
  margin-top: 45px;
}

.cta {
  background: url("/wp-content/uploads/2025/11/BG.png");
  padding: 0 12vw;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}

.cta h3 {
  color: var(--accent);
  font-size: 40px;
  text-align: center;
}

.cta p {
  /*font-size: 24px;*/
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
}

.contenedor-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-btn {
  width: 400px;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--btn-bg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cta-btn:hover {
  background: var(--btn-bg-hover);
}

footer {
  padding: 1.2rem 0 3.5rem 0;
  display: flex;
  justify-content: space-around;
}

footer p a {
  color: white;
  text-decoration: none;
}

.social-icons a {
  padding: 0 10px;
}

.separador {
  width: 80%;
  border: none;
  border-top: 1px solid #fff;
  display: block;
  margin: 0 auto;
}

/* ========== Responsive ========== */
/* <= 1024px (tablet) */
@media (max-width: 1024px) {
  .hero-content {
    min-height: 100vh;
  }
  .navbar {
    margin: 2rem;
  }
  .navbar-container {
    width: 70%;
    gap: 10px;
    padding: 8px 14px;
  }
  .navbar-menu {
    gap: 16px;
  }
  .hero-cards {
    display: none;
  }
  .contenedor-funcionalidades {
    flex-direction: column;
    align-items: center;
  }
  .productos header p {
    font-size: 1.5rem;
    padding-top: 1rem;
  }
  #btn-mas,
  #btn-menos {
    margin-right: 4rem;
  }
  .logo-marquee-section header {
    padding: 4rem;
  }
  .down-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .cta {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .cta-btn {
    width: 300px;
  }

  .contenedor-cta {
    gap: 20px;
  }

  .productos.is-open #productos-lista {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: 20px;
  }

  .lista-regalo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* <= 640px (mobile) */
@media (max-width: 640px) {
  .navbar {
    position: static;
    top: auto;
  }

  .navbar-container {
    border-radius: 16px;
    display: none;
  }

  .hero-btn {
    margin-top: 2rem;
  }

  .hero-cards {
    display: none;
  }

  .funcionalidades-app h2,
  .productos h2 {
    font-size: 3rem;
    text-align: center;
  }

  .contenedor-funcionalidades {
    flex-direction: column;
  }

  .productos {
    --card-w: 280px;
    padding: 2rem;
  }

  #productos-lista {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 var(--card-gap);
    margin: 0;
  }

  #productos-lista > li {
    scroll-snap-align: center;
    flex: 0 0 100%;
  }

  .productos.is-open #productos-lista {
    grid-template-columns: 1fr;
  }

  .lista-regalo {
    grid-template-columns: 1fr;
  }

  .logo-marquee-section {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding-top: 30px;
  }

  .logo-marquee-section header {
    width: 100%;
    padding: 20px;
  }

  .contenedor-download {
    width: 90%;
  }

  .contenedor-download h3 {
    font-size: 2.2rem;
  }

  .down-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .cta {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .cta-btn {
    width: 300px;
  }

  .contenedor-cta {
    gap: 20px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ========== Modal de contacto ========== */
/* Backdrop centrado y animado */
.modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1000;
}

.modal-backdrop.is-open {
  display: flex;
  animation: fadeIn 0.18s ease-out;
}

/* Caja de modal (tema oscuro con acento celeste) */
.modal {
  width: min(460px, 92vw);
  max-height: 92vh;
  overflow: auto;
  position: relative;
  padding: 24px 24px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  color: #fff;
  transform: translateY(8px);
  animation: slideUp 0.2s ease-out;
}

.contact-modal {
  background: radial-gradient(
      120% 200% at 80% 25%,
      rgba(21, 187, 224, 0.75) 0%,
      rgba(21, 187, 224, 0) 60%
    ),
    linear-gradient(180deg, #0b1116 0%, #0b1116 100%);
}

/* Cerrar modal */
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: transparent;
}

/* Campos y tipografía del modal */
.contact-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 500;
  margin: 18px 0 16px;
  letter-spacing: 0.2px;
  text-align: center;
}

.field {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.field > span {
  color: #cbd5e1;
  font-size: 13px;
}

.contact-modal input {
  height: 48px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #0b1116;
  outline: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.contact-modal input::placeholder {
  color: #8aa0b2;
}

.contact-modal input:focus {
  border-color: #18b4e7;
  box-shadow: 0 0 0 3px rgba(24, 180, 231, 0.25);
}

/* Botones */
.btn {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  font-weight: 700;
}

.btn.primary {
  background: linear-gradient(180deg, #1a3f7e 0%, #0f2f63 100%);
  color: #fff;
  padding: 14px 22px;
  box-shadow: 0 10px 24px rgba(7, 21, 44, 0.45);
}

.btn.primary:hover {
  filter: brightness(1.06);
}

.btn.full {
  width: 100%;
  margin-top: 10px;
}

/* Nota informativa al pie del modal */
.contact-note {
  text-align: center;
  color: #fff;
  opacity: 0.95;
  margin: 14px 0 4px;
  line-height: 1.35;
}

/* Animaciones de modal */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(8px);
  }
}

@media (max-width: 520px) {
  .contact-title {
    font-size: 28px;
  }
}

#mainNav {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  z-index: 9999;
  transition: all 0.3s ease;
  background-color: transparent;
}
#mainNav:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  user-select: none;
  z-index: -1;
  background: linear-gradient(
    207deg,
    rgba(14, 43, 99, 0) 20%,
    rgba(0, 0, 0, 0) 90%
  );
  transition: all 0.3s ease;
}
#mainNav.navbar-shrink {
  background-color: #252525;
}
#mainNav.navbar-shrink:before {
  background: linear-gradient(207deg, #0e2b63 20%, rgba(0, 0, 0, 0) 90%);
}
#mainNav .navbar-nav {
  position: relative;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  width: 100%;
  justify-content: space-around;
}
@media (max-width: 991px) {
  #mainNav .navbar-nav {
    border-radius: 10px;
  }
}
#mainNav .navbar-nav:before {
  content: "";
  border-radius: 50px;
  padding: 1px;
  inset: 0;
  position: absolute;
  background: linear-gradient(90deg, #ffffff 0%, #747474 100%);
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  user-select: none;
  z-index: 0;
}
@media (max-width: 991px) {
  #mainNav .navbar-nav:before {
    border-radius: 10px;
  }
}
#mainNav .navbar-nav .nav-item {
  position: relative;
  z-index: 1;
}
#mainNav .navbar-nav .nav-item .nav-link {
  position: relative;
  font-family: "DM Sans";
  font-size: 15px;
  line-height: 34px;
  color: #fff;
}
@media (max-width: 991px) {
  #mainNav .navbar-nav .nav-item .nav-link {
    text-align: center;
  }
}
#mainNav .navbar-nav .nav-item .nav-link:before {
  content: "";
  width: 100%;
  height: 20px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  border-radius: 100%;
  filter: blur(6px);
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 0;
}
#mainNav .navbar-nav .nav-item .nav-link:hover:before {
  opacity: 0.15;
}
#mainNav .navbar-toggler {
  border: 0px;
  padding: 0px;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  flex-flow: wrap;
  border-radius: 0px;
}
@media (max-width: 991px) {
  #mainNav .navbar-toggler {
    display: flex;
  }
}
#mainNav .navbar-toggler[aria-expanded="true"] .bar:nth-child(1) {
  position: absolute;
  transform-origin: center center;
  transform: rotate(45deg);
}
#mainNav .navbar-toggler[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
#mainNav .navbar-toggler[aria-expanded="true"] .bar:nth-child(3) {
  position: absolute;
  transform-origin: center center;
  transform: rotate(-45deg);
}
#mainNav .navbar-toggler .bar {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 4px;
  transition: all 0.1s ease;
}
#mainNav .navbar-toggler:focus {
  box-shadow: none;
}
#mainNav .navbar-toggler .navbar-collapse {
  text-align: right;
}
@media (max-width: 480px) {
  #mainNav .navbar-toggler .navbar-collapse {
    margin-top: 0px;
  }
}
@media (max-width: 991px) {
  #mainNav {
    background-color: #252525;
  }
  #mainNav:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(207deg, #0e2b63 20%, rgba(0, 0, 0, 0) 90%);
    user-select: none;
    z-index: -1;
  }
}
@media (min-width: 992px) {
  #mainNav {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: padding-top 0.3s, padding-bottom 0.3s;
  }
  #mainNav .navbar-brand .logo {
    width: 200px;
    height: 60px;
    margin-right: 100px;
  }
  #mainNav .navbar-nav {
    margin-top: 0;
  }
  #mainNav .navbar-nav > li.nav-item > a.nav-link.active {
    color: #fff;
    background: transparent;
  }
  #mainNav .navbar-nav > li.nav-item > a.nav-link.active:active,
  #mainNav .navbar-nav > li.nav-item > a.nav-link.active:focus,
  #mainNav .navbar-nav > li.nav-item > a.nav-link.active:hover {
    color: #fff;
    background: transparent;
  }
}
.page-section {
  padding: 6rem 0 6rem 0;
}
@media (max-width: 992px) {
  .page-section {
    padding-top: 3rem;
  }
}
@media (max-width: 575px) {
  .page-section {
    padding-bottom: 1rem;
  }
}
.sumapay {
  position: relative;
  background-color: #000000;
}
.sumapay .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 655px) {
  .sumapay .container .d-flex {
    display: block !important;
  }
}
.sumapay:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(14, 43, 99, 0.5) 50%, #000000 100%);
  user-select: none;
  z-index: 0;
}
.sumapay .titulo {
  font-family: "Roboto";
  font-size: 75px;
  line-height: 82px;
  letter-spacing: -5px;
  font-weight: 500;
  color: #ffffff;
}
@media (max-width: 991px) {
  .sumapay .titulo {
    font-size: 60px;
    line-height: 65px;
  }
}
.sumapay .titulo .c-celeste {
  color: #2fbbdf;
}
.sumapay .texto {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.5px;
  color: #ffffff;
  text-align: center;
  margin-top: 24px;
}
.sumapay .phone {
  width: 270px;
  height: 545px;
  background-image: url("/wp-content/uploads/2025/04/phone.svg");
  background-repeat: no-repeat;
}
@media (max-width: 665px) {
  .sumapay .phone {
    margin: 0px auto;
  }
}
.sumapay .phone .phone_splide {
  display: flex;
  min-height: 100%;
}
.sumapay .phone .phone_splide .splide__track .splide__list .splide__slide {
  /*display: flex;*/
  min-height: 100%;
}
.sumapay
  .phone
  .phone_splide
  .splide__track
  .splide__list
  .splide__slide
  .btns {
  position: relative;
  top: 121px;
  left: 1px;
  display: grid;
  grid-template-columns: repeat(2, 80px);
  /*grid-template-rows: repeat(3, 80px);*/
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}
.sumapay
  .phone
  .phone_splide
  .splide__track
  .splide__list
  .splide__slide
  .btns
  .btn_ {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-family: sans-serif;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.sumapay
  .phone
  .phone_splide
  .splide__track
  .splide__list
  .splide__slide
  .btns
  .btn_.active,
.sumapay
  .phone
  .phone_splide
  .splide__track
  .splide__list
  .splide__slide
  .btns
  .btn_:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.sumapay
  .phone
  .phone_splide
  .splide__track
  .splide__list
  .splide__slide
  .btns
  .btn_:before {
  content: "";
  border-radius: 8px;
  padding: 1px;
  inset: 0;
  position: absolute;
  background: linear-gradient(180deg, #ffffff 0%, #747474 100%);
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  user-select: none;
  z-index: 0;
}
.sumapay .opciones {
  position: relative;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 60px;
  max-width: 540px;
}
@media (max-width: 991px) {
  .sumapay .opciones {
    padding: 20px;
    max-width: 300px;
  }
}
@media (max-width: 655px) {
  .sumapay .opciones {
    margin-top: 20px;
    max-width: 100%;
  }
}
.sumapay .opciones:before {
  content: "";
  border-radius: 25px;
  padding: 1px;
  inset: 0;
  position: absolute;
  background: linear-gradient(180deg, #ffffff 0%, #747474 100%);
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  user-select: none;
  z-index: 0;
}
.sumapay .opciones .opcion {
  display: flex;
  flex-flow: column;
  justify-content: center;
  min-height: 100%;
  gap: 20px;
}
@media (max-width: 655px) {
  .sumapay .opciones .opcion {
    align-items: center;
  }
}
.sumapay .opciones .opcion .icon {
  width: 70px;
  height: 70px;
}
.sumapay .opciones .opcion .titulo {
  font-family: "Roboto";
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -1.5px;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 655px) {
  .sumapay .opciones .opcion .titulo {
    text-align: center;
  }
}
.sumapay .opciones .opcion .texto {
  font-family: "Roboto";
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  color: #ffffff;
  text-align: left;
}
.testimonios {
  position: relative;
  background-color: #000000;
}
@media (max-width: 574px) {
  .testimonios {
    padding-bottom: 150px;
  }
}
.testimonios .container {
  position: relative;
  z-index: 1;
}
.testimonios:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #4c2882 15%, #0e2b63 100%);
  user-select: none;
  z-index: 0;
}
.testimonios .testimonios_splide {
  display: flex;
  min-height: 100%;
  cursor: grab;
}
.testimonios .testimonios_splide .splide__arrows .splide__arrow {
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  opacity: 1;
  background-color: transparent;
  z-index: 2;
  transition: all 0.2s ease;
  bottom: -27px;
  top: auto;
  left: auto;
}
@media (max-width: 574px) {
  .testimonios .testimonios_splide .splide__arrows .splide__arrow {
    bottom: -125px;
  }
}
.testimonios .testimonios_splide .splide__arrows .splide__arrow svg {
  display: none;
}
.testimonios
  .testimonios_splide
  .splide__arrows
  .splide__arrow.splide__arrow--prev {
  background-image: url("/wp-content/uploads/2025/04/arrow-left.svg");
  right: 75px;
}
@media (max-width: 574px) {
  .testimonios
    .testimonios_splide
    .splide__arrows
    .splide__arrow.splide__arrow--prev {
    left: calc(50% - 80px);
  }
}
.testimonios
  .testimonios_splide
  .splide__arrows
  .splide__arrow.splide__arrow--prev:hover {
  background-image: url("/wp-content/uploads/2025/04/arrow-left_hover.svg");
}
.testimonios
  .testimonios_splide
  .splide__arrows
  .splide__arrow.splide__arrow--next {
  background-image: url("/wp-content/uploads/2025/04/arrow-right.svg");
  right: 0px;
}
@media (max-width: 574px) {
  .testimonios
    .testimonios_splide
    .splide__arrows
    .splide__arrow.splide__arrow--next {
    left: 50%;
  }
}
.testimonios
  .testimonios_splide
  .splide__arrows
  .splide__arrow.splide__arrow--next:hover {
  background-image: url("/wp-content/uploads/2025/04/arrow-right_hover.svg");
}
.testimonios .testimonios_splide .splide__track .splide__list .splide__slide {
  /*display: flex;*/
  min-height: 100%;
}
.testimonios
  .testimonios_splide
  .splide__track
  .splide__list
  .splide__slide
  .testimonio
  .texto {
  font-family: "DM Sans";
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.5px;
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 50px;
}
@media (max-width: 655px) {
  .testimonios
    .testimonios_splide
    .splide__track
    .splide__list
    .splide__slide
    .testimonio
    .texto {
    font-size: 30px;
    line-height: 35px;
  }
}
.testimonios
  .testimonios_splide
  .splide__track
  .splide__list
  .splide__slide
  .testimonio
  .perfil {
  display: flex;
  gap: 20px;
  align-items: center;
}
.testimonios
  .testimonios_splide
  .splide__track
  .splide__list
  .splide__slide
  .testimonio
  .perfil
  .pic {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonios
  .testimonios_splide
  .splide__track
  .splide__list
  .splide__slide
  .testimonio
  .perfil
  .data
  .nombre {
  font-family: "DM Sans";
  font-size: 24px;
  line-height: 29px;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #ffffff;
}
.testimonios
  .testimonios_splide
  .splide__track
  .splide__list
  .splide__slide
  .testimonio
  .perfil
  .data
  .cargo {
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.5px;
  font-weight: 200;
  color: #ffffff;
}
.servicios {
  position: relative;
  background-color: #000000;
}
.servicios .container {
  position: relative;
  z-index: 1;
}
.servicios:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(14, 43, 99, 0.5) 50%, #000000 100%);
  user-select: none;
  z-index: 0;
}
.servicios .titulo {
  font-family: "DM Sans";
  font-size: 75px;
  line-height: 82px;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .servicios .titulo {
    font-size: 60px;
    line-height: 65px;
  }
}
.servicios .texto {
  font-family: "DM Sans";
  font-weight: 300;
  font-size: 32px;
  line-height: 37px;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 0px;
}
.servicios .holder-items {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
@media (max-width: 480px) {
  .servicios .holder-items {
    display: block;
    margin-top: 50px;
  }
}
.servicios .holder-items .items {
  position: relative;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  width: 530px;
}
@media (max-width: 480px) {
  .servicios .holder-items .items {
    width: 100%;
    border-radius: 30px;
  }
}
.servicios .holder-items .items:before {
  content: "";
  border-radius: 50px;
  padding: 1px;
  inset: 0;
  position: absolute;
  background: linear-gradient(90deg, #ffffff 0%, #747474 100%);
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  user-select: none;
  z-index: 0;
}
@media (max-width: 480px) {
  .servicios .holder-items .items:before {
    border-radius: 30px;
  }
}
.servicios .holder-items .items .item {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 480px) {
  .servicios .holder-items .items .item {
    display: block;
  }
}
.servicios .holder-items .items .item .btn_ {
  display: inline-block;
  width: 100%;
  font-family: "DM Sans";
  font-size: 16px;
  line-height: 53px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s ease;
}
.servicios .holder-items .items .item .btn_.activo,
.servicios .holder-items .items .item .btn_:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.servicios .holder-items .items .item .btn_:first-child {
  border-radius: 50px 0px 0px 50px;
}
@media (max-width: 480px) {
  .servicios .holder-items .items .item .btn_:first-child {
    border-radius: 30px 30px 0px 0px;
  }
}
.servicios .holder-items .items .item .btn_:last-child {
  border-radius: 0px 50px 50px 0px;
}
@media (max-width: 480px) {
  .servicios .holder-items .items .item .btn_:last-child {
    border-radius: 0px 0px 30px 30px;
  }
}
.servicios .holder-items .items .item .btn_:nth-child(2) {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
@media (max-width: 480px) {
  .servicios .holder-items .items .item .btn_:nth-child(2) {
    border: 0px;
  }
}
.servicios .logos {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-flow: wrap;
  margin-top: 56px;
}
.servicios .logos .logo {
  display: none;
}
.servicios .logos .logo.activo {
  display: inline-block;
}
.preguntas-frecuentes {
  position: relative;
  background-color: #000000;
}
.preguntas-frecuentes .container {
  position: relative;
  z-index: 1;
}
.preguntas-frecuentes:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(14, 43, 99, 0.5) 50%, #000000 100%);
  user-select: none;
  z-index: 0;
}
.preguntas-frecuentes .titulo {
  font-family: "Roboto";
  font-size: 75px;
  line-height: 82px;
  letter-spacing: -0.5px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 65px;
}
@media (max-width: 991px) {
  .preguntas-frecuentes .titulo {
    font-size: 60px;
    line-height: 65px;
  }
}
.preguntas-frecuentes .items .item {
  cursor: pointer;
  user-select: none;
  position: relative;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 50px 40px 50px 40px !important;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .preguntas-frecuentes .items .item {
    padding: 30px 20px 30px 20px !important;
  }
}
.preguntas-frecuentes .items .item:before {
  content: "";
  border-radius: 25px;
  padding: 1px;
  inset: 0;
  position: absolute;
  background: linear-gradient(180deg, #ffffff 0%, #747474 100%);
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  user-select: none;
  z-index: 0;
}
.preguntas-frecuentes .items .item > div {
  position: relative;
  z-index: 1;
}
.preguntas-frecuentes .items .item .arrow {
  position: relative;
  transform: rotate(180deg);
  transition: all 0.1s ease;
}
.preguntas-frecuentes .items .item .titulo {
  font-family: "Roboto";
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .preguntas-frecuentes .items .item .titulo {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 480px) {
  .preguntas-frecuentes .items .item .titulo {
    font-size: 20px;
    line-height: 25px;
  }
}
.preguntas-frecuentes .items .item .texto {
  font-family: "Roboto";
  font-weight: 300;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: -0.5px;
  color: #a8a8a8;
  padding-top: 20px;
}
.preguntas-frecuentes .items .item.open .arrow {
  transform: rotate(0deg);
}
.preguntas-frecuentes .items .item.open .texto {
  display: block;
}
.preguntas-frecuentes .items .item .top {
  min-height: 104px;
}
.preguntas-frecuentes .items .item .texto {
  display: none;
}
.footer {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #0e2b63;
}
@media (max-width: 991px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.footer .holder {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  padding: 40px 125px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .footer .holder {
    padding: 40px 55px;
  }
}
.footer .holder:before {
  content: "";
  border-radius: 25px;
  padding: 1px;
  inset: 0;
  position: absolute;
  background: linear-gradient(180deg, #ffffff 0%, #747474 100%);
  mask: linear-gradient(#ffffff 0 0) content-box, linear-gradient(#ffffff 0 0);
  mask-composite: exclude;
  user-select: none;
  z-index: 0;
}
.footer .holder > .row {
  position: relative;
  z-index: 1;
}
.footer .holder .titulo {
  font-family: "Roboto";
  font-size: 75px;
  line-height: 82px;
  letter-spacing: -5px;
  font-weight: 500;
  color: #ffffff;
}
.footer .holder .titulo .c-celeste {
  color: #2fbbdf;
}
@media (max-width: 991px) {
  .footer .holder .titulo {
    font-size: 60px;
    line-height: 65px;
    letter-spacing: -4px;
  }
}
@media (max-width: 480px) {
  .footer .holder .titulo {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -2px;
  }
}
.footer .holder .texto {
  font-family: "Roboto";
  font-weight: 300;
  font-size: 32px;
  line-height: 37px;
  color: #ffffff;
}
@media (max-width: 480px) {
  .footer .holder .texto {
    font-size: 22px;
    line-height: 27px;
  }
}
.footer .holder .holder-btns {
  width: 100%;
  max-width: 540px;
}
.footer .holder .holder-btns .btn-descargar {
  width: 100%;
  display: block;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 20px;
  line-height: 50px;
  color: #000000;
  text-align: center;
  background-color: #2fbbdf;
  border-radius: 50px;
  text-decoration: none;
}
.footer .holder .holder-btns .logo-descargar {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  border: 0.5px solid #8c8c8c;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0px 0px 0px 0.5px #d9d9d9;
}
.footer .border-top {
  border-top: 1px solid white;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .footer .border-top {
    text-align: center;
  }
}
.footer .border-top .texto {
  font-family: "DM Sans";
  font-weight: 300;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  margin: 0px;
}
@media (max-width: 991px) {
  .footer .border-top .texto span {
    display: block;
  }
  .footer .border-top .texto span:not(.t) {
    display: none;
  }
  .footer .border-top .texto span.t {
    margin-bottom: 20px;
  }
}
.footer .border-top .texto a {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .footer .border-top .texto a {
    display: inline-block;
    width: 100%;
  }
}
.footer .border-top .texto a:hover {
  text-decoration: underline;
}
.footer .border-top .redes {
  display: inline-flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .footer .border-top .redes {
    margin-top: 20px;
  }
}
.footer .border-top .redes .btn-link img {
  width: 30px;
  height: 30px;
}
.form {
  color: white;
}

.form input {
  border-radius: 6px;
  height: 38px;
  border: 1px solid white;
}

.form .wpcf7-submit {
  width: 94%;
  margin-top: 16px;
  width: 94%;
  margin-top: 16px;
  background: white;
  color: black;
  border: 1px solid white;
}

.fm h2 {
  color: white;
  text-align: center;
}

.blform {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #0e2b63;
}

.blform .holder {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  padding: 40px 125px;
  margin-bottom: 60px;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin-top: 14px;
}

.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .blform .holder {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    padding: 40px 40px;
    margin-bottom: 60px;
  }
  .form input {
    width: 100%;
  }
  .form input[type="checkbox"] {
    width: 20px;
  }
}

/* Tarjetas */
.titulo-tarjetas {
  padding: 10rem 0 6rem 0;
}

.tarjetas .titulo .c-celeste {
  color: #2fbbdf;
}

.titulo-tarjetas .titulo .c-celeste {
  color: #2fbbdf;
}

.titulo-tarjetas .container .texto {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

.slick-slide {
  width: 375px;
}

.tarjetas .holder {
  width: 362px;
  height: 470px;
  background: #2f3338;
  border-radius: 10px 10px 25px 25px;
}

.tarjetas .holder .layer .titulo {
  font-family: Roboto;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -5%;
  color: rgba(255, 255, 255, 0.7333);
  padding-left: 20px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.tarjetas .holder .layer .texto {
  font-family: Roboto;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -5%;
  color: rgba(47, 187, 223, 1);
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 6px;
}

.tarjetas .holder .layer .texto2 {
  font-family: Roboto;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 1);
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 30px;
}

.tarjetas {
  position: relative;
  background-color: #000000;
  padding-bottom: 70px;
}

.tarjetas:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(14, 43, 99, 0.5) 50%, #000000 100%);*/
  user-select: none;
  z-index: 0;
}

.mt10 {
  margin-top: 40px;
}

.container-tit,
.tarjetas {
  z-index: 1;
  position: relative;
  padding-left: calc(17% - 48px);
  text-align: left;
}

.titulo-tarjetas .texto {
  padding-right: calc(16% - 48px);
  text-align: left;
}

@media (max-width: 768px) {
  .slick-slide {
    width: 407px;
  }

  .feature-phone {
    width: 100%;
  }
  .slick-slide img {
    width: 300px;
  }

  .tarjetas .holder {
    width: 300px;
    height: 400px;
    background: #2f3338;
    border-radius: 10px 10px 25px 25px;
  }

  .tarjetas .holder .layer .titulo {
    font-family: Roboto;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -5%;
  }

  .tarjetas .holder .layer .texto {
    font-family: Roboto;
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -5%;
    color: rgba(47, 187, 223, 1);
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 6px;
  }

  .tarjetas .holder .layer .texto2 {
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
  }
  .slick-slide,
  .slick-slide-dos {
    width: 340px !important;
  }

  .cen {
    display: flex;
    flex-direction: column;
  }

  .contenedor-marcas {
    display: none;
  }

  .logo-marquee-section header {
    padding-left: 72px;
  }

  /*.draggable {
    padding: 0px 30px !important;
  }*/
}

.container-tarjetas {
  margin-left: 0%;
}

@media (max-width: 768px) {
  .hero-content {
    min-height: 50vh;
  }
}
footer .social-icons .btn-link img {
  width: 30px;
  height: 30px;
}

.svne {
  width: 190px;
}

.contenedor-download h3 .highlight {
  color: var(--accent);
}

.sep {
  width: 75%;
  margin: auto;
}

.slick-prev:before,
.slick-next:before {
  font-size: 36px !important;
}
.slick-prev {
  left: -48px !important;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 560px;
  height: 315;
}

#video .sep h3 {
  padding: 3rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
  color: var(--accent);
  text-align: center;
}

.card-plus:hover .info-popover,
.card-combustible:hover .info-popover,
.card-viaticos:hover .info-popover,
.card-despensa .info-popover {
  background: #000000;
  background: linear-gradient(
    180deg,
    rgb(16 24 28 / 50%) 38%,
    rgb(75 77 77) 100%
  );
  width: 232px !important;
  height: 85px;
  display: flex;
  -webkit-box-shadow: 2px 5px 31px -1px #3ad1f2;
  box-shadow: 2px 5px 31px -1px #3ad1f2;
}

.info-popover img {
  width: 29px;
  margin-left: 15px;
}

.info-popover .cont h4 span {
  color: #3ad1f2;
}

.info-popover .cont {
  padding-top: 19px;
  padding-left: 10px;
}

.info-popover .cont h4 {
  font-size: 15px;
  text-align: left;
  font-family: "Roboto";
}

.info-popover .cont p {
  font-size: 12px;
  text-align: left;
  margin-top: 6px;
}

/* Contacto */

.headercontacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 63px;
}

.headercontacto .feature-layout {
  width: 92vw;
  display: flex;
  justify-content: space-around;
  align-items: baseline;
  flex-direction: column;
}

.feature-slider2 .wpcf7 {
  width: 90%;
  border: 2px solid rgba(58, 209, 242, 1);
  padding: 30px;
  padding-left: 42px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.16);
}

.headercontacto .field > span {
  font-family: Roboto;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: rgba(255, 255, 255, 1);
}

.headercontacto .wpcf7 input,
.headercontacto .wpcf7 select {
  width: 430;
  height: 48;
  angle: 0 deg;
  opacity: 1;
  gap: 8px;
  border-radius: 4px;
  border-width: 1px;
  padding: 12px;
  border: 1px solid rgba(195, 198, 216, 1);
  width: 94%;
}

.headercontacto .wpcf7 input[type="submit"] {
  width: 430;
  height: 48;
  angle: 0 deg;
  opacity: 1;
  gap: 50px;
  border-radius: 50px;
  border-width: 0.5px;
  padding-top: 14px;
  padding-right: 20px;
  padding-bottom: 14px;
  padding-left: 20px;
  border: 0.5px solid;
  border-image-source: linear-gradient(90deg, #ffffff 0%, #747474 100%);
}

.headercontacto .wpcf7 .contact-note {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 21px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  margin-top: -6px;
}

.headercontacto .highlight {
  color: var(--accent);
}

.headercontacto p {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -3%;
  vertical-align: middle;
}

.headercontacto .listacorpo {
  display: flex;
  flex-direction: column;
  width: 92%;
}

.headercontacto .listacorpo span {
  font-family: Inter;
  font-weight: 400;
  font-style: normal;
  font-size: 29px;
  leading-trim: NONE;
  line-height: 31px;
  letter-spacing: -4%;
  vertical-align: middle;
  margin-bottom: 17px;
}

.headercontacto h1 {
  width: 90%;
}

.feature-slider2 {
  display: flex;
  align-items: center;
  max-width: 600px;
  width: 100%;
  gap: 10px;
}

@media (max-width: 768px) {
  .headercontacto .feature-layout {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    flex-direction: column;
  }

  .headercontacto h1 {
    width: 100%;
    font-size: 33px;
  }

  .headercontacto p {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 27px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -3%;
    vertical-align: middle;
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .headercontacto .listacorpo {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .headercontacto .listacorpo span {
    font-family: Inter;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 27px;
    letter-spacing: -4%;
    vertical-align: middle;
    margin-bottom: 17px;
  }

  .headercontacto .contenedor-funcionalidades {
    display: flex;
    width: 100%;
    margin-bottom: 4rem;
    padding-left: 31px;
    padding-right: 27px;
  }

  .feature-slider .wpcf7 {
    width: 100%;
    border: 2px solid rgba(58, 209, 242, 1);
    padding: 30px;
    padding-left: 42px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.16);
  }

  .headercontacto .wpcf7 input,
  .headercontacto .wpcf7 select {
    width: 430;
    height: 48;
    angle: 0 deg;
    opacity: 1;
    gap: 8px;
    border-radius: 4px;
    border-width: 1px;
    padding: 12px;
    border: 1px solid rgba(195, 198, 216, 1);
    width: 100%;
  }

  .headercontacto .wpcf7 .field {
    display: grid;
    gap: 8px;
    margin: 12px 0px;
    margin-left: -7px;
  }

  .headercontacto .wpcf7 .contact-note {
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 19px;
    letter-spacing: -2%;
    text-align: center;
    vertical-align: middle;
    margin-top: -6px;
  }

  .feature-slider2 {
    display: flex;
    align-items: center;
    max-width: 600px;
    width: 100%;
    gap: 10px;
    margin-top: 23px;
  }
}
