@charset "UTF-8";
:root {
  --bg-dark: #0e1325;
  --primary: #2d6aff;
  --text-light: #ffffff;
  --overlay: rgba(0, 0, 0, 0.45);
}

:root {
  --bg-base: #0e1325;
  --surface: #141b3d;
  --accent: #2d6aff;
  --text-main: #ffffff;
  --text-soft: #a7b0c2;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background-color: #000000;
  color: white;
  -webkit-font-smoothing: antialiased;
}
body main,
body header,
body section,
body footer {
  position: relative;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 900px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  z-index: 9999;
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner .cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cookie-banner .cookie-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.cookie-banner .cookie-content p a {
  color: #00E0A1;
  text-decoration: none;
  font-weight: 500;
}
.cookie-banner .cookie-content p a:hover {
  text-decoration: underline;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}

#fluid-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(120px, 15vh, 180px) 1.5rem;
}
.hero .hero-content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.hero .hero-inner {
  max-width: 1400px;
  animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero .hero-inner .kicker {
  color: #00E0A1;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.hero .hero-inner .kicker .led {
  width: 34px;
  height: 12px;
  margin-top: 2.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
}
.hero .hero-inner .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  gap: 0.75rem;
  text-align: center;
}
.hero .hero-inner .hero-title .rotating-word {
  display: inline-flex;
  gap: 0.02em;
  margin-left: 0.3em;
  padding: 0.18em 0.4em;
  background-color: #00E0A1;
  color: #0F1115;
  border-radius: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
}
.hero .hero-inner .hero-title .char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}
.hero .hero-inner .hero-title .rotating-word.is-visible .char {
  transform: translateY(0);
  opacity: 1;
}
.hero .hero-inner .hero-title .rotating-word.is-hidden .char {
  transform: translateY(-100%);
  opacity: 0;
}
.hero .hero-inner .hero-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: 0.85;
  max-width: 760px;
  margin: 0 auto 32px;
  animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.15s;
}
.hero .hero-inner .cta-wrap {
  padding: 30px 1.5rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero .hero-inner .pills {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.hero .hero-inner .pills .pill {
  padding: 10px 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.25s ease;
}
.hero .hero-inner .pill:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.tecnologias {
  min-height: 40vh;
  width: 100%;
}
.tecnologias__content {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
}
.tecnologias__tech {
  position: relative;
  inset: auto;
  transform: none;
  margin-top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 50%;
  padding: 0 clamp(1rem, 3vw, 2rem);
  z-index: 2;
  width: 100%;
}
.tecnologias__tech .tech-card {
  background: linear-gradient(180deg, rgba(25, 227, 166, 0.95), rgba(25, 227, 166, 0.85));
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(0.625rem, 1.5vw, 1rem);
  min-width: clamp(8rem, 15vw, 10rem);
  max-width: clamp(10rem, 20vw, 12rem);
  flex: 1 1 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tecnologias__tech .tech-card:hover {
  transform: translateY(-0.375rem);
  box-shadow: 0 0.5rem 1.5rem rgba(25, 227, 166, 0.3);
}
.tecnologias__tech .tech-card__icon {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  border-radius: clamp(0.5rem, 1vw, 0.75rem);
  margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}
.tecnologias__tech .tech-card__title {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: var(--text-main);
  font-weight: 500;
}
.tecnologias__tech .tech-card img {
  width: 100%;
  height: clamp(3.5rem, 8vw, 5rem);
  object-fit: contain;
}

.v-section-modulos {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 120px 20px;
}
.v-section-modulos .v-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.v-section-modulos .v-modulos-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #00E0A1;
  font-weight: 700;
  margin-bottom: 15px;
}
.v-section-modulos .v-modulos-kicker .v-led {
  width: 30px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
}
.v-section-modulos .v-modulos-title {
  font-size: clamp(24px, 5vw, 40px);
  margin-bottom: 50px;
  max-width: 70%;
  margin: 0 auto 100px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
}
.v-section-modulos .v-modulos-grid {
  display: grid;
  gap: 32px;
  max-width: 90%;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}
.v-section-modulos .v-modulos-grid .v-mod-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(12px) saturate(140%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: scaleIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.v-section-modulos .v-modulos-grid .v-mod-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}
.v-section-modulos .v-modulos-grid .v-mod-card .v-mod-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}
.v-section-modulos .v-modulos-grid .v-mod-card .v-mod-card-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.v-section-modulos .v-modulos-grid .v-mod-card .v-mod-card-img img {
  width: 100%;
  max-width: 160px;
  height: auto;
  opacity: 0.9;
}

.join-section {
  padding: clamp(80px, 10vw, 140px) 6vw;
  /* Contenedor general */
}
.join-section .join-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  /* Caja azul (card) */
}
.join-section .join-container .join-card {
  width: 100%;
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  background: radial-gradient(1200px 400px at top center, rgba(255, 255, 255, 0.08), transparent 60%), linear-gradient(180deg, rgba(25, 227, 166, 0.95), rgba(25, 227, 166, 0.85));
  backdrop-filter: blur(40px);
  color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.join-section .join-container .join-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.join-section .join-container .join-card .join-title {
  font-size: clamp(32px, 4vw, 48px);
  color: #0b0f14;
  font-weight: 700;
  margin-bottom: 20px;
}
.join-section .join-container .join-card .join-text {
  max-width: 720px;
  margin: 0 auto 36px;
  color: #0b0f14;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}
.join-section .join-container .join-card .join-roles {
  list-style: none;
  padding: 0;
  margin-bottom: 48px;
  opacity: 0.85;
}
.join-section .join-container .join-card .join-roles li {
  color: #0b0f14;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  opacity: 0.9;
}
.join-section .join-container .join-card .join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #0F1115;
  border: 2px solid #0F1115;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.join-section .join-container .join-card .join-btn:hover {
  background: #0F1115;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.clients-section {
  padding: 100px 20px;
  text-align: center;
}
.clients-section .clients-header {
  margin-bottom: 60px;
}
.clients-section .clients-header .clients-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.clients-section .clients-header .clients-line {
  display: block;
  width: 40px;
  height: 3px;
  background: #1e63ff;
  margin: 0 auto;
}
.clients-section .clients-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.clients-section .clients-slider .clients-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  width: max-content;
}
.clients-section .clients-slider .clients-track .client-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients-section .clients-slider .clients-track .client-logo img {
  width: 200px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
  will-change: transform;
}
.clients-section .clients-slider .clients-track .client-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.contact-section {
  min-height: 100vh;
  padding: 100px 20px;
  color: #e9eef0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.contact-section .contact-info .info-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact-section .contact-info .info-item {
  text-align: center;
}
.contact-section .contact-info .info-item .icon {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-info .info-item .icon img {
  width: 15%;
  height: 15%;
  object-fit: contain;
}
.contact-section .contact-info .info-item h4 {
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.contact-section .contact-info .info-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.contact-section .contact-container {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 30px;
  padding: 3rem;
}
.contact-section .contact-container .contact-header {
  margin-bottom: 2rem;
  text-align: center;
}
.contact-section .contact-container .contact-header .contact-title {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.contact-section .contact-container .contact-header .contact-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 90%;
  margin: 0 auto;
}
.contact-section .contact-container .contact-formulario {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-section .contact-container .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: transparent;
  border: none;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
  font-weight: bold;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 12px;
  background-color: #0F1115;
  color: #e9eef0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-size: 0.95em;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2D6AFF;
  box-shadow: 0 0 0 2px rgba(45, 106, 255, 0.3);
}
.form-group textarea {
  resize: vertical;
}
.form-group .recaptcha-wrapper {
  width: 304px; /* ancho real del captcha */
  height: auto;
  margin: 0 auto; /* centrado */
  transform-origin: 0 0;
}
.form-group .g-recaptcha {
  max-width: 100%;
  overflow: visible;
}
.form-group {
  /* Error responsive */
}
.form-group .input-error {
  font-size: 0.85rem;
  color: #ff4d4f;
}

.input-error {
  color: #FF3B30;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.submit-button {
  align-self: center;
  padding: 12px 30px;
  background-image: linear-gradient(90deg, #2D6AFF, #00E0A1);
  color: #0F1115;
  font-weight: bold;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.3s, opacity 0.3s;
}
.submit-button:hover {
  transform: scale(1.03);
  opacity: 0.95;
}
.submit-button:hover .arrow-icon {
  margin-left: 14px;
}
.submit-button .arrow-icon {
  margin-left: 8px;
  transition: margin-left 0.3s;
}

.spinner {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal .modal-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.2rem 3rem;
  border-radius: 22px;
  border: 1px solid rgba(0, 224, 161, 0.4);
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 224, 161, 0.25);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 420px;
  color: #e9eef0;
}
.modal .modal-card .check-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid #00E0A1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 42px;
  color: #00E0A1;
  background: rgba(0, 224, 161, 0.08);
}
.modal .modal-card .modal-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.8rem;
}
.modal .modal-card .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.modal .modal-card .modal-actions .btn-accept {
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
  color: #ffffff;
  border: none;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal .modal-card .modal-actions .btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 224, 161, 0.35);
}
.modal .modal-card .modal-actions .btn-reject {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal .modal-card .modal-actions .btn-reject:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.hidden {
  display: none !important;
}

@media (max-width: 1440px) {
  .hero-title {
    font-size: clamp(2.3rem, 5vw, 4rem);
  }
  .v-modulos-title {
    max-width: 85%;
  }
}
@media (max-width: 1366px) {
  .tecnologias__tech {
    max-width: 65%;
  }
  .v-section-modulos .v-modulos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1280px) {
  .nav-center {
    gap: 18px;
  }
  .nav-center a {
    font-size: 14px;
  }
  .hero-sub {
    max-width: 680px;
  }
  .v-mod-card {
    padding: 26px;
  }
  .join-card {
    padding: 60px;
  }
}
@media (max-width: 1024px) {
  /* HERO */
  .hero {
    height: auto;
    padding: 140px 1.5rem 100px;
  }
  .hero-inner {
    height: auto;
  }
  /* TECNOLOGÍAS */
  .tecnologias {
    height: auto;
  }
  .tecnologias__tech {
    position: static;
    transform: none;
    max-width: 90%;
    margin: 0 auto;
  }
  /* MODULOS */
  .v-modulos-title {
    max-width: 100%;
  }
  .v-mod-card-title {
    font-size: 25px;
  }
  .v-modulos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .v-mod-card img {
    width: 170px;
  }
  .v-mod-card-text {
    font-size: 18px;
  }
  /* CONTACTO */
  #contacto {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .image-box img {
    width: 450px;
    display: flex;
    margin: 0 auto;
    padding-right: 80px;
  }
  .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /* CONTACTO */
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 80px 20px;
  }
  .contact-info {
    align-items: center;
    text-align: center;
  }
  .image-box img {
    width: 450px;
    margin: 0 auto;
    padding-left: 0;
  }
  .contact-container {
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  /* HERO */
  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .hero-sub {
    font-size: 15px;
  }
  .cta-wrap {
    flex-direction: column;
  }
  /* PILLS */
  .pill {
    font-size: 14px;
    padding: 8px 14px;
  }
  /* TEC CARDS */
  .tech-card {
    min-width: 140px;
  }
  /* JOIN */
  .join-title {
    font-size: 32px;
  }
  .join-text {
    font-size: 15px;
  }
  /* CLIENTES */
  .clients-track {
    gap: 50px;
  }
  .client-logo img {
    width: 150px;
  }
  /* INFO CONTACTO */
  .info-items {
    grid-template-columns: 1fr;
  }
  .contact-section {
    gap: 2.5rem;
  }
  .contact-info {
    gap: 2rem;
  }
  .info-items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-title {
    font-size: 1.4rem;
  }
  .contact-subtitle {
    font-size: 0.9rem;
  }
  .v-modulos-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  .v-section-modulos {
    padding: 80px 16px;
  }
  .v-section-modulos .v-container {
    padding: 0 8px;
  }
  .v-section-modulos .v-container .v-modulos-grid {
    grid-template-columns: 1fr;
  }
  .v-section-modulos .v-container .v-modulos-grid .v-mod-card {
    padding: 24px;
  }
  .v-section-modulos .v-container .v-modulos-grid .v-mod-card img {
    width: 150px;
  }
  .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 60px 16px;
    gap: 2rem;
  }
  .contact-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .info-items {
    display: grid;
    grid-template-columns: 1fr;
  }
  .info-item .icon {
    width: 52px;
    height: 52px;
  }
  .contact-container {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 1.8rem 1.2rem;
  }
  .contact-form {
    width: 100%;
    max-width: 100%;
  }
  .recaptcha-wrapper {
    transform: scale(0.85);
  }
  .submit-button {
    width: 100%;
  }
  .contact-title {
    font-size: 1.25rem;
  }
  .contact-subtitle {
    font-size: 0.85rem;
  }
  .cookie-banner {
    width: calc(100% - 16px);
  }
}
header.nav-glass {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(120%);
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999999;
  transition: background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  /* ================= LOGO (TAMAÑO FIJO) ================= */
}
header.nav-glass .logo {
  display: flex;
  align-items: center;
}
header.nav-glass .logo img {
  height: 90px;
  margin: -20px;
  transition: filter 0.3s ease;
}
header.nav-glass {
  /* ================= NAV CENTER ================= */
}
header.nav-glass .nav-center {
  display: flex;
  gap: 12px;
}
header.nav-glass .nav-center a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: color 0.3s ease, background 0.3s ease;
}
header.nav-glass .nav-center a:hover {
  background: rgba(255, 255, 255, 0.08);
}
header.nav-glass {
  /* ================= NAV RIGHT ================= */
}
header.nav-glass .nav-right {
  display: flex;
  gap: 14px;
  align-items: center;
}
header.nav-glass .nav-right .btn {
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
  padding: 10px 18px;
  font-weight: 700;
  border-radius: 999px;
  color: #052010;
  text-decoration: none;
}
header.nav-glass {
  /* ================= HAMBURGUESA ================= */
}
header.nav-glass .nav-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
header.nav-glass {
  /* ================= RESPONSIVE (SOLO VISIBILIDAD) ================= */
}
@media (max-width: 900px) {
  header.nav-glass .nav-center {
    display: none;
  }
  header.nav-glass .nav-toggle {
    display: block;
  }
}
@media (max-width: 520px) {
  header.nav-glass .nav-right .btn {
    display: none;
  }
}
header.nav-glass {
  /* =====================================================
     LIGHT STYLE (SOLO COLORES / SOMBRAS)
     ===================================================== */
}
header.nav-glass.light-style {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(40px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
header.nav-glass.light-style .logo img {
  filter: brightness(0);
}
header.nav-glass.light-style .nav-center a {
  color: #000;
}
header.nav-glass.light-style .nav-center a:hover {
  background: rgba(0, 0, 0, 0.06);
}
header.nav-glass.light-style .nav-toggle {
  color: #000;
}
header.nav-glass {
  /* =====================================================
     SCROLLED (NO CAMBIA TAMAÑOS)
     ===================================================== */
}
header.nav-glass.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
header.nav-glass {
  /* =====================================================
     INVERT COLORS (MISMO TAMAÑO)
     ===================================================== */
}
header.nav-glass.invert-colors {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
header.nav-glass.invert-colors .logo img {
  filter: brightness(0);
}
header.nav-glass.invert-colors .nav-center a {
  color: #000;
}
header.nav-glass.invert-colors .nav-toggle {
  color: #000;
}

/* Footer */
.footer {
  height: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: grid;
  padding: 70px 0 40px 0;
  border-radius: 14px 14px 0 0;
}
.footer .container {
  justify-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  border-bottom: 1px solid rgba(167, 176, 194, 0.2);
  padding-bottom: 50px;
}
.footer .footer-title {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 15px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.footer p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.footer .social-icons {
  display: flex;
  gap: 12px;
}
.footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .social-icons a img {
  width: 24px;
  height: 24px;
}
.footer .social-icons a {
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer .social-icons a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.footer .footer-bottom {
  width: 100%;
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
  border-radius: 0 0 14px 14px;
}

/* =========================
   RESPONSIVE – FOOTER
========================= */
/* ---------- ≤ 1200px (laptop) ---------- */
@media (max-width: 1200px) {
  .footer {
    padding: 60px 0 36px 0;
  }
  .footer .container {
    gap: 50px;
  }
}
/* ---------- ≤ 992px (tablet landscape) ---------- */
@media (max-width: 992px) {
  .footer {
    padding: 56px 20px 34px;
  }
  .footer .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
  }
  .footer .social-icons {
    justify-content: center;
  }
}
/* ---------- ≤ 768px (tablet / mobile grande) ---------- */
@media (max-width: 768px) {
  .footer {
    padding: 50px 16px 32px;
  }
  .footer .container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .footer-title {
    font-size: 14px;
  }
  .footer p {
    font-size: 13.5px;
  }
  .footer .social-icons a img {
    width: 22px;
    height: 22px;
  }
  .footer-bottom {
    margin-top: 32px;
    font-size: 13px;
  }
}
/* ---------- ≤ 480px (mobile) ---------- */
@media (max-width: 480px) {
  .footer {
    padding: 44px 14px 28px;
  }
  .footer-title {
    font-size: 13px;
    letter-spacing: 0.4px;
  }
  .footer p {
    font-size: 13px;
    line-height: 1.6;
  }
  .footer .social-icons {
    gap: 14px;
  }
  .footer .social-icons a {
    transform: none;
  }
  .footer .social-icons a:hover {
    transform: translateY(-1px);
  }
}
/* ---------- ≤ 360px (mobile chico) ---------- */
@media (max-width: 360px) {
  .footer-title {
    font-size: 12.5px;
  }
  .footer p {
    font-size: 12.5px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
/* --- SECCIÓN PROCESO --- */
.proceso-job {
  padding: 120px 20px;
  color: #e9eef0;
}
.proceso-job__container {
  max-width: 1400px;
  margin: 0 auto;
}
.proceso-job__header {
  text-align: center;
  margin-bottom: 72px;
}
.proceso-job__header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
}
.proceso-job__header p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}
.proceso-job__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .proceso-job__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .proceso-job__steps {
    grid-template-columns: 1fr;
  }
}
.proceso-job__step {
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proceso-job__step:hover {
  transform: translateY(-8px);
}
.proceso-job__step h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
  font-weight: 500;
}
.proceso-job__step p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.proceso-job__icon img {
  width: 100px;
}
.proceso-job__time {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.85rem;
  color: #00E0A1;
  font-weight: 500;
}

/* --- CAROUSEL PRINCIPAL --- */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.carousel__viewport {
  height: 100%;
}
.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel .carousel__link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  text-decoration: none;
  color: inherit;
}
.carousel .carousel__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--overlay, rgba(0, 0, 0, 0.55)));
  pointer-events: none;
  z-index: 1;
}
.carousel__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__content {
  position: absolute;
  bottom: 15%;
  left: 10%;
  max-width: 480px;
  z-index: 2;
  pointer-events: none;
}
.carousel__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.carousel__content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}
.carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s;
}
.carousel__control:hover {
  background: rgba(0, 0, 0, 0.7);
}
.carousel__control.prev {
  left: 2rem;
}
.carousel__control.next {
  right: 2rem;
}
.carousel__indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 6;
}
.carousel__indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel__indicators button.active {
  background: var(--primary, #fff);
  transform: scale(1.2);
}

/* --- NAVEGACIÓN (ESTADOS SIN IMPORTANT) --- */
.nav-glass {
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: background 0.15s linear;
}
.nav-glass .logo img,
.nav-glass .nav-center a,
.nav-glass .nav-toggle {
  color: inherit;
  transition: filter 0.1s ease, color 0.1s ease;
}
.nav-glass.nav-glass--dark {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.nav-glass.nav-glass--dark .logo img {
  filter: brightness(0);
}
.nav-glass.nav-glass--dark .nav-center a,
.nav-glass.nav-glass--dark .nav-toggle {
  color: #000000;
}

.flow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
.flow .flow__inner .flow__intro {
  text-align: center;
}
.flow .flow__inner .flow__intro h2 {
  font-size: 3rem;
}
.flow .flow__inner .flow__intro p {
  font-size: 1.2rem;
  padding-bottom: 60px;
}

/* ===== Rail ===== */
.rail {
  position: relative;
  cursor: grab;
  user-select: none;
}
.rail:active {
  cursor: grabbing;
}

/* ===== Track ===== */
.rail__track {
  display: flex;
  gap: 2.5rem;
  will-change: transform;
}

/* ===== Units ===== */
.unit {
  flex: 0 0 360px;
  padding: 5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  border-radius: 20px;
  color: var(--text-main);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.unit:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(10, 207, 233, 0.45);
}

/* ===== Unit Content ===== */
.unit__title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.unit__text {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ===== Markers ===== */
.markers {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.markers__track {
  display: flex;
  gap: 0.75rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.markers__track button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--text-soft);
  opacity: 0.35;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.markers__track button.is-active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.4);
}

/* ===== Micro hint (opcional) ===== */
.flow__hint {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.vdx-testify {
  width: 100%;
  padding: 6rem 1.5rem;
  color: #ffffff;
}
.vdx-testify__wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.vdx-testify__head {
  text-align: center;
  margin-bottom: 3rem;
}
.vdx-testify__head .vdx-testify__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.vdx-testify__head .vdx-testify__subtitle {
  color: #b5b5b5;
  font-size: 1rem;
}
.vdx-testify .vdx-testify-slider {
  position: relative;
  overflow: hidden;
}
.vdx-testify .vdx-testify-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}
.vdx-testify .vdx-testify-slider .vdx-testify-card {
  min-width: 100%;
  padding: 2.5rem;
  text-align: center;
}
.vdx-testify .vdx-testify-slider .vdx-testify-card__text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #eaeaea;
}
.vdx-testify .vdx-testify-slider .vdx-testify-card__name {
  font-size: 1rem;
  font-weight: 600;
}
.vdx-testify .vdx-testify-slider .vdx-testify-card__role {
  font-size: 0.9rem;
  color: #9b9b9b;
}
.vdx-testify .vdx-testify-slider .vdx-testify-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  color: #000000;
  transition: background 0.3s ease;
}
.vdx-testify .vdx-testify-slider .vdx-testify-nav:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.829);
  border: solid 1px #ffffff;
}
.vdx-testify .vdx-testify-slider .vdx-testify-nav--prev {
  left: 0.5rem;
}
.vdx-testify .vdx-testify-slider .vdx-testify-nav--next {
  right: 0.5rem;
}
.vdx-testify .vdx-testify-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.vdx-testify .vdx-testify-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.vdx-testify .vdx-testify-dots button.is-active {
  background: rgba(255, 255, 255, 0);
}

/* ---------- ≤ 1200px (laptop) ---------- */
@media (max-width: 1200px) {
  .card {
    padding: 3rem 2.2rem;
  }
  .card__logo {
    height: 200px;
  }
  .carousel__content {
    max-width: 420px;
    left: 8%;
  }
  .unit {
    flex: 0 0 320px;
    padding: 4rem;
  }
}
/* ---------- ≤ 992px (tablet landscape) ---------- */
@media (max-width: 992px) {
  /* PROCESO */
  .proceso-job {
    padding: 100px 20px;
  }
  .proceso-job__header {
    margin-bottom: 56px;
  }
  .proceso-job__steps {
    gap: 24px;
  }
  /* CARDS */
  .card {
    border-radius: 26px;
  }
  /* CAROUSEL */
  .carousel {
    height: 80vh;
  }
  .carousel__content {
    bottom: 12%;
    max-width: 380px;
  }
  .carousel__content h2 {
    font-size: 2.2rem;
  }
  .carousel__content p {
    font-size: 1rem;
  }
  /* TESTIMONIOS */
  .flow {
    padding: 5rem 0;
  }
  .flow__intro h2 {
    font-size: 2.5rem;
  }
  .flow__intro p {
    font-size: 1.05rem;
  }
  .unit {
    flex: 0 0 300px;
    padding: 3.5rem;
  }
}
/* ---------- ≤ 768px (tablet / mobile grande) ---------- */
@media (max-width: 768px) {
  /* CARD */
  .card {
    padding: 2.5rem 2rem;
  }
  .card__logo {
    height: 180px;
  }
  h3 {
    font-size: 1.05rem;
  }
  p {
    font-size: 0.9rem;
  }
  /* PROCESO */
  .proceso-job {
    padding: 90px 16px;
  }
  .proceso-job__header h2 {
    font-size: 2rem;
  }
  .proceso-job__icon img {
    width: 80px;
  }
  /* FLOW */
  .flow {
    padding: 72px 16px;
  }
  .flow__inner {
    max-width: 100%;
  }
  .flow__intro {
    text-align: center;
    margin-bottom: 32px;
  }
  .flow__intro h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .rail {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .rail__track {
    display: flex;
    gap: 16px;
    padding-bottom: 8px;
  }
  .unit {
    flex: 0 0 260px;
    min-width: 85%;
    padding: 24px 20px;
    scroll-snap-align: start;
    border-radius: 14px;
  }
  .unit h3 {
    font-size: 1rem;
    line-height: 1.55;
  }
  .unit h4 {
    font-size: 0.95rem;
    margin-top: 14px;
  }
  .unit p {
    font-size: 0.85rem;
    opacity: 0.85;
  }
  /* INDICADORES */
  .markers {
    display: none;
  }
  .vdx-testify-card {
    padding: 2rem 1.5rem;
  }
  .vdx-testify-card__text {
    font-size: 1rem;
  }
}
/* ---------- ≤ 576px (mobile) ---------- */
@media (max-width: 576px) {
  /* CARD */
  .card {
    padding: 2.2rem 1.6rem;
    border-radius: 22px;
  }
  .card__logo {
    height: 150px;
  }
  /* PROCESO */
  .proceso-job__steps {
    gap: 20px;
  }
  .proceso-job__step {
    padding: 32px 20px;
  }
  .proceso-job__icon img {
    width: 70px;
  }
  /* CAROUSEL */
  .carousel {
    height: auto;
    min-height: 60vh;
    padding-bottom: 50px;
  }
  .carousel__slide {
    height: 75vh;
  }
  .carousel__control {
    top: 42%;
    transform: translateY(-50%);
  }
  .carousel__content h2 {
    font-size: 1.8rem;
  }
  .carousel__content p {
    font-size: 0.95rem;
  }
  .carousel__indicators {
    bottom: 70px;
  }
  /* TESTIMONIOS */
  .flow {
    padding: 4rem 0;
  }
  .flow__intro p {
    font-size: 0.95rem;
    padding-bottom: 40px;
  }
  .unit {
    flex: 0 0 85vw;
    padding: 2.5rem;
  }
  .unit__title {
    font-size: 1rem;
  }
  .unit__text {
    font-size: 0.9rem;
  }
}
@media (max-width: 420px) {
  .carousel {
    height: auto;
    min-height: 55vh;
    padding-bottom: 120px;
  }
  .carousel__content h2 {
    font-size: 1.6rem;
  }
  .carousel__content p {
    font-size: 0.9rem;
  }
  .carousel__indicators {
    bottom: 140px;
  }
  .markers {
    margin-top: 2rem;
  }
  .vdx-testify-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: 50vh;
  }
  .vdx-testify-slider__track {
    width: 100%;
  }
  .vdx-testify-nav {
    position: static;
    transform: none;
    margin-top: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vdx-testify-nav--prev,
  .vdx-testify-nav--next {
    margin: 5rem 7rem 0;
    gap: 1rem;
  }
  .vdx-testify-card {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 390px) {
  .vdx-testify-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    height: 50vh;
  }
  .vdx-testify-slider__track {
    width: 100%;
  }
  .vdx-testify-nav {
    position: static;
    transform: none;
    margin-top: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vdx-testify-nav--prev,
  .vdx-testify-nav--next {
    margin: 6.5rem 4.5rem 0;
    gap: 1rem;
  }
  .vdx-testify-card {
    padding-bottom: 1.5rem;
  }
}
.about {
  padding: 6rem 1.5rem;
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.about__container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.about__header {
  max-width: 800px;
  margin: 0 auto 4rem;
}
.about__header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.about__header p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about__divider {
  display: block;
  width: 60px;
  height: 3px;
  background: #2D6AFF;
  margin: 0 auto 2rem;
  border-radius: 2px;
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.tarjet {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 32px;
  padding: 3.5rem 2.5rem 2.5rem;
  text-align: center;
  transition: transform 0.3s, 0.3s;
}
.tarjet:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.tarjet img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 25px rgba(0, 120, 255, 0.35));
}
.tarjet__icon {
  width: 14px;
  height: 14px;
  background: #2D6AFF;
  border-radius: 50%;
  margin: -0.5rem auto 1.5rem;
  box-shadow: 0 0 20px rgba(0, 120, 255, 0.8);
}
.tarjet h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}
.tarjet p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 0.5rem;
}
.tarjet ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tarjet ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.process {
  padding: 6rem 0;
  background-color: #ffffff;
}
.process .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.process-header {
  text-align: center;
  margin-bottom: 4rem;
}
.process-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #0b0b0b;
  margin-bottom: 0.8rem;
}
.process-header p {
  font-size: 1rem;
  color: #6b7280;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.process-column {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.process-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d4bff;
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1rem;
}
.process-item h3::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d4bff;
  font-size: 1.4rem;
  line-height: 1;
}
.process-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.faq {
  padding: 6rem 0;
}
.faq .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffffff;
}
.faq-header p {
  font-size: 1rem;
  color: #c0c1c2;
}
.faq-list {
  border-top: 1px solid #2D6AFF;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0d4bff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-question:hover {
  color: #0d4bff;
}
.faq-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-color: #0d4bff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  padding-top: 1rem;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding-bottom: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d3d1d1;
}
.faq .active .faq-answer {
  max-height: 0;
  overflow: hidden;
}
.faq .active .faq-icon {
  transform: rotate(-135deg);
  border-color: #0d4bff;
}

/* =========================
RESPONSIVE – ABOUT · PROCESS · FAQ
========================= */
/* ---------- ≤ 1200px (laptop) ---------- */
@media (max-width: 1200px) {
  .about {
    padding: 5rem 1.5rem;
  }
  .about__header h2 {
    font-size: 2.2rem;
  }
  .tarjet {
    padding: 3rem 2.2rem;
  }
  .process-header h2 {
    font-size: 2.6rem;
  }
}
/* ---------- ≤ 992px (tablet landscape) ---------- */
@media (max-width: 992px) {
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__cards > article:nth-child(3) {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 420px;
    width: 100%;
  }
  /* ABOUT */
  .about__container {
    padding-top: 30px;
  }
  .about__header {
    margin-bottom: 3.5rem;
  }
  .about__cards {
    gap: 1.6rem;
  }
  .tarjet {
    border-radius: 26px;
  }
  .tarjet img {
    width: 100px;
    height: 100px;
  }
  /* PROCESS */
  .process {
    padding: 5rem 0;
  }
  .process-grid {
    gap: 2.5rem;
  }
  .process-item h3 {
    font-size: 1.35rem;
  }
  /* FAQ */
  .faq {
    padding: 5rem 0;
  }
}
/* ---------- ≤ 768px (tablet / mobile grande) ---------- */
@media (max-width: 768px) and (max-width: 768px) {
  body {
    padding-top: 90px;
  }
}
@media (max-width: 768px) {
  /* ABOUT */
  .about {
    padding: 4.5rem 1.25rem;
  }
  .about__header h2 {
    font-size: 2rem;
  }
  .about__header p {
    font-size: 0.95rem;
  }
  .about__cards {
    grid-template-columns: 1fr;
    width: 80%;
    margin: 0 auto;
  }
  .about__cards > article:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }
  .tarjet {
    padding: 2.6rem 2rem;
  }
  .tarjet h3 {
    font-size: 1.1rem;
  }
  .tarjet p,
  .tarjet ul li {
    font-size: 0.9rem;
  }
  /* PROCESS */
  .process-header h2 {
    font-size: 2.2rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-column {
    gap: 1.8rem;
  }
  .process-item h3 {
    font-size: 1.25rem;
  }
  /* FAQ */
  .faq-header h2 {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
  }
}
/* ---------- ≤ 576px (mobile) ---------- */
@media (max-width: 576px) {
  /* ABOUT */
  .about {
    padding: 4rem 1rem;
  }
  .about__header {
    margin-bottom: 3rem;
  }
  .about__divider {
    margin-bottom: 1.6rem;
  }
  .tarjet {
    padding: 2.3rem 1.6rem;
    border-radius: 22px;
  }
  .tarjet img {
    width: 90px;
    height: 90px;
  }
  /* PROCESS */
  .process {
    padding: 4rem 0;
  }
  .process-header h2 {
    font-size: 1.9rem;
  }
  .process-header p {
    font-size: 0.95rem;
  }
  .process-item h3 {
    font-size: 1.15rem;
  }
  /* FAQ */
  .faq {
    padding: 4rem 0;
  }
  .faq-header h2 {
    font-size: 1.8rem;
  }
  .faq-question {
    padding: 1.2rem 0;
  }
}
/* ---------- ≤ 420px (mobile chico) ---------- */
@media (max-width: 420px) {
  .about__header h2 {
    font-size: 1.7rem;
  }
  .process-header h2 {
    font-size: 1.7rem;
  }
  .faq-header h2 {
    font-size: 1.6rem;
  }
  .tarjet {
    padding: 2rem 1.4rem;
  }
}
.services {
  padding: 6rem 1.5rem;
  background-color: rgb(255, 255, 255);
}
.services__container {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 50vh;
  height: auto;
}
.services__header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.services__header h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: black;
}
.services__header::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1e88e5;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}
.services__header p {
  max-width: 620px;
  margin: 0 auto;
  color: black;
  font-size: 1rem;
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.service-slug {
  border-radius: 18px;
  padding: 2.2rem;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(40px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.service-slug:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.service-slug__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border-radius: 14px;
  font-size: 1.5rem;
  color: black;
}
.service-slug h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: black;
}
.service-slug p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: black;
}

.service-slug__icon img {
  filter: brightness(0);
  width: 100%;
  height: auto;
}

.preciospag {
  padding-top: 8rem;
}
.preciospag__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: stretch;
  position: relative;
}
.preciospag__lok {
  max-width: 720px;
  margin: 0 auto 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.preciospag__popin {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.preciospag__description {
  font-size: 1.05rem;
  color: #A7B0C2;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}
.preciospag__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00E0A1;
  border: 1px solid rgba(0, 224, 161, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(0, 224, 161, 0.05);
}
.preciospag__badge--primary {
  color: #ffffff;
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
  border: none;
}
.preciospag__cta {
  margin-top: 24px;
  display: inline-flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.preciospag__cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.preciospag__cta--primary {
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
  border: none;
  box-shadow: 0 10px 40px rgba(45, 106, 255, 0.35);
}
.preciospag__pop--highlight {
  position: relative;
  transform: translateY(-14px);
  box-shadow: 0 0 0 1px rgba(45, 106, 255, 0.25), 0 30px 80px rgba(0, 0, 0, 0.6);
}
.preciospag__pop--highlight::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(45, 106, 255, 0.25), transparent 60%);
  pointer-events: none;
}
.preciospag__footer {
  margin-top: 60px;
  text-align: center;
  color: #A7B0C2;
  font-size: 0.95rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.preciospag__pop {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 36px 34px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.preciospag__pop:hover {
  transform: translateY(-6px);
}

.preciospag__notes {
  margin-top: 96px;
  padding: 48px 42px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.preciospag__notes-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.preciospag__notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A7B0C2;
}
.preciospag__notes-list li {
  position: relative;
  padding-left: 22px;
}
.preciospag__notes-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #00E0A1;
  font-size: 1.2rem;
  line-height: 1;
}

.preciospag__payments {
  margin-top: 90px;
  padding: 60px 48px;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(36px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  text-align: center;
}
.preciospag__payments-highlight {
  display: inline-flex;
  padding: 10px 24px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
  box-shadow: 0 12px 34px rgba(45, 106, 255, 0.5);
}
.preciospag__payments-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}
.preciospag__payments-subtitle {
  font-size: 0.95rem;
  color: #A7B0C2;
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.preciospag__payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}
.preciospag__payments-cta {
  margin-top: 48px;
}

.payment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.payment-card img {
  height: 36px;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}
.payment-card span {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}
.payment-card small {
  font-size: 0.75rem;
  color: #A7B0C2;
}
.payment-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
}
.payment-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}
.payment-card--highlight {
  border-color: rgba(0, 224, 161, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 224, 161, 0.35), 0 25px 70px rgba(0, 0, 0, 0.65);
}

.payment-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, #00E0A1, #2D6AFF);
  box-shadow: 0 8px 20px rgba(0, 224, 161, 0.5);
}

.payments-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
  box-shadow: 0 14px 40px rgba(45, 106, 255, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.payments-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(45, 106, 255, 0.6);
}

@media (max-width: 1440px) {
  .services__container,
  .preciospag__container {
    max-width: 1200px;
  }
}
@media (max-width: 1366px) {
  .services {
    padding: 5rem 1.5rem;
  }
  .services__header h1 {
    font-size: 2.1rem;
  }
  .preciospag__popin {
    font-size: 2.3rem;
  }
  .preciospag__container {
    gap: 36px;
  }
}
@media (max-width: 1280px) {
  .services__container {
    height: auto;
  }
  .service-slug {
    padding: 2rem;
  }
  .preciospag__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .preciospag__pop--highlight {
    transform: none;
  }
}
@media (max-width: 1024px) {
  .services {
    padding: 100px;
    padding-top: 10vh;
  }
  .preciospag {
    padding-top: 60px;
  }
  .preciospag__pop {
    padding: 32px 28px;
  }
  .preciospag__container {
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px;
    padding: 10px;
  }
  .preciospag__notes,
  .preciospag__payments {
    padding: 40px 32px;
  }
  .nav-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: var(--nav-height, 0px);
  }
}
@media (max-width: 768px) {
  /* NAV */
  .nav-center {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .nav-center.active {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  /* SERVICES */
  .services {
    padding: 8rem 1rem 4rem;
  }
  .services__header h1 {
    font-size: 1.9rem;
  }
  /* PRECIOS */
  .preciospag__container {
    grid-template-columns: 1fr;
  }
  .preciospag__lok {
    margin-bottom: 64px;
    padding: 0 1rem;
  }
  .preciospag__popin {
    font-size: 2rem;
  }
  /* PAYMENTS */
  .preciospag__payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .social-icons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .services {
    padding: 7rem 1rem 4rem;
  }
  .services__header h1 {
    font-size: 1.6rem;
  }
  .service-slug {
    padding: 1.6rem;
  }
  .preciospag__pop {
    padding: 28px 22px;
  }
  .preciospag__popin {
    font-size: 1.7rem;
  }
  .preciospag__payments-grid {
    grid-template-columns: 1fr;
  }
  .payments-cta-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .services__header h1 {
    font-size: 1.45rem;
  }
  .preciospag__popin {
    font-size: 1.5rem;
  }
  .payment-card {
    padding: 22px 18px;
  }
}
.btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn.primary {
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
  color: #ffffff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 106, 255, 0.35);
}
.btn.secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn.secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-cta {
  background: linear-gradient(90deg, #2D6AFF, #00E0A1);
  border: none;
  padding: 10px 34px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=styles.css.map */