:root {
  --green: #c9ff14;
  --green-dark: #a8d41a;
  --blue: #166ce9;
  --blue-mid: #0335da;
  --blue-light: #2255e8;
  --dark: #080f1e;
  --dark2: #0d1a35;
  --white: #ffffff;
  --gray: #8a9bb5;
  --gray-light: #f2f5fa;
  --text: #1a2540;
}

@font-face {
  font-family: "Melbourne";
  src: url("./assets/fonts/Melbourne\ Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MelbourneBold";
  src: url("./assets/fonts/Melbourne\ Semi\ Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Haniva";
  src: url("./assets/fonts/Haniva-SemiBold.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HanivaBold";
  src: url("./assets/fonts/Haniva-Book.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Melbourne", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Melbourne", sans-serif;
}

/* ── NAVBAR ── */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: transparent;
}

nav .logo {
  height: 100px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

nav .logo span {
  color: var(--green);
}
nav .logo-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}
nav .nav-cta {
  background: var(--green);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.02em;
}
nav .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 241, 53, 0.35);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;

  background: url("./assets/FONDO\ HEADER.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 0;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 20% 50%,
      rgba(22, 64, 200, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 20%,
      rgba(198, 241, 53, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198, 241, 53, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 241, 53, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-grid-bg,
#hero::before {
  display: none;
}

.hero-left {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 241, 53, 0.1);
  border: 1px solid rgba(198, 241, 53, 0.3);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
#hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.1s ease both;
}

#hero h1 em {
  font-family: "HanivaBold", sans-serif;
  color: var(--green);
  font-style: normal;
}

#hero h2 {
  font-family: "Melbourne", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.25rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.1s ease both;
}

#hero h2 em {
  font-family: "HanivaBold", sans-serif;
  color: var(--green);
  font-style: normal;
}
#hero .hero-sub {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-sub em {
  font-family: "HanivaBold", sans-serif;
  color: var(--green);
  font-style: normal;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-tag {
  cursor: default;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--white);
  font-family: "HanivaBold", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.hero-tag:hover {
  background: rgba(198, 241, 53, 0.15);
  border-color: rgba(198, 241, 53, 0.4);
  color: var(--green);
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.btn-primary {
  background: var(--green);
  color: var(--dark);
  font-family: "Haniva", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(198, 241, 53, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: "Haniva", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(198, 241, 53, 0.06);
}

/* FORM CARD */
.hero-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-form-card .card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.card-header-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.hero-form-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}
.form-badges {
  font-family: "Melbourne", sans-serif;
  font-weight: lighter;
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.form-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.form-badge.green {
  color: var(--green);
  font-weight: lighter;
}
.form-badge.blue {
  color: var(--green);
  font-weight: lighter;
}
.form-group {
  margin-bottom: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(198, 241, 53, 0.5);
  background: rgba(198, 241, 53, 0.04);
}
.form-group select {
  color: rgba(255, 255, 255, 0.5);
}
.form-group select option {
  background: var(--dark2);
  color: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}
.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--dark);
  font-family: "Haniva", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198, 241, 53, 0.45);
}
.form-disclaimer {
  text-align: center;
  color: var(--green);
  font-size: 0.75rem;
  margin-top: 10px;
}

/* ── LOGOS BAND ── */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px; /* ajusta el tamaño */
  width: auto;
  display: block;
}

#logos {
  background: var(--white);
  padding: 28px 5%;
  border-bottom: 1px solid #e8edf5;
  overflow: hidden;
}
#logos p {
  text-align: center;
  font-size: 1.5rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#logos p em {
  font-family: "HanivaBold", sans-serif;
  color: var(--blue);
  font-style: normal;
  font-weight: bolder;
}

.logos-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll-logos 25s linear infinite;
  width: max-content;
}
.logos-wrapper {
  overflow: hidden;
  width: 100%;
}
@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-item img {
  width: 120px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ── STATS STRIP ── */
#stats {
  background: var(--white); /* fondo base limpio */
  padding: 60px 5%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/TEXTURA CARAS 2.png"); /* sin backslash */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Asegura que el contenido quede por encima de la textura */
#stats > * {
  position: relative;
  z-index: 1;
}

.stat-item {
  font-family: "HanivaBold", sans-serif;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: bolder;
}
.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stat-icon img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  display: block;
}
.stat-num {
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span {
  color: var(--blue);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--blue);
  line-height: 1.4;
  font-weight: 500;
}
.stat-sub {
  font-size: 0.7rem;
  color: #888;
  line-height: 1.3;
  margin-top: 2px;
}
#line {
  width: 25px;
  border-bottom: 1px solid var(--blue);
  margin-bottom: 3px;
}

/* ── SECTION SHARED ── */
section {
  position: relative;
}
.section-inner {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 5%;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(22, 64, 200, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em {
  font-family: "HanivaBold", sans-serif;
  color: var(--green);
  font-style: normal;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}

/* ── MODULES ── */
#modules {
  padding: 100px 0 0;
  background: var(--blue);
  overflow: hidden;
}
#modules .section-inner {
  text-align: center;
}
#modules .section-tag {
  color: var(--green);
  background: rgba(198, 241, 53, 0.1);
  border: 1px solid rgba(198, 241, 53, 0.2);
}
#modules .section-title {
  color: var(--white);
}
#modules .section-title em {
  font-family: "HanivaBold", sans-serif;
  color: var(--green);
  font-style: normal;
}
#modules .section-sub {
  font-family: "Melbourne", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 60px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.module-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s;
  cursor: default;
}
.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 241, 53, 0.35);
  background: rgba(198, 241, 53, 0.04);
}
.module-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.module-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.module-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}
.modules-extra {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}
.modules-extra strong {
  color: var(--white);
}

/* Layout dos columnas */
#modules .section-inner {
  text-align: left;
}

.modules-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;

  overflow: visible;
}

/* Columna imagen */
.modules-img-col {
  position: relative;

  opacity: 0;
  transform: translateY(60px);

  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.modules-img-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modules-mockup-wrap {
  overflow: visible;
  position: relative;
}

.modules-mockup-wrap img {
  width: 100%;
  height: auto;
  display: block;

  transform: scale(1.22);
  transform-origin: center top;
}

/* Badges flotantes */
.modules-badge {
  cursor: default;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--white);

  font-family: "HanivaBold", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;

  padding: 10px 20px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap; /* ← CLAVE */
  line-height: 1;

  transition:
    background 0.2s,
    border-color 0.2s;
}
.modules-badge:hover {
  background: rgba(198, 241, 53, 0.15);
  border-color: rgba(198, 241, 53, 0.4);
  color: var(--green);
}
.badge-top {
  background: #c6f135;
  color: #0d1a35;
  top: -14px;
  right: 20px;
  transform: translateY(10px);
  box-shadow: 0 4px 16px rgba(198, 241, 53, 0.35);
  transition-delay: 0.9s;
}
.badge-bottom {
  background: #fff;
  color: #0d1a35;
  bottom: 24px;
  left: -18px;
  transform: translateX(-10px);
  transition-delay: 1.1s;
}
.modules-img-col.is-visible .modules-badge {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 900px) {
  .modules-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #modules .section-inner {
    text-align: center;
  }
  .modules-img-col {
    max-width: 100%;
    margin: 0 auto;
  }
  .modules-mockup-wrap img {
    transform: none;
  }
  .badge-bottom {
    left: 10px;
  }
}

/* ── GIFT CARDS ── */
#giftcards {
  background: url("./assets/FONDO AZUL Y VERDE.png") no-repeat center/cover;
  padding: 45px 0 80px;
  overflow: hidden;
}

#giftcards .section-tag {
  color: var(--green);
  background: rgba(198, 241, 53, 0.1);
  border: 1px solid rgba(198, 241, 53, 0.2);
}

.gc-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.gc-header .section-title {
  color: var(--white);
}

.gc-header .section-title em {
  color: var(--green);
  font-style: normal;
}

.gc-header .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}

/* Carrusel */
.gc-carousel-wrapper {
  position: relative;
  width: 100%;

  /* IMPORTANTE */
  padding: 10px 0;

  overflow: hidden;

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
}

.gc-carousel-track {
  display: flex;
  align-items: center;
  gap: 20px;

  /* IMPORTANTE */
  padding: 20px 0;

  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gc-carousel-track.no-anim,
.gc-carousel-track.no-anim .gc-card {
  transition: none !important;
}

/* Cards */
.gc-card {
  flex-shrink: 0;
  width: 220px;
  height: 138px;
  border-radius: 16px;
  overflow: hidden; 

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s,
    filter 0.6s;

  filter: grayscale(100%) brightness(0.75);
  transform: scale(0.85);
}

.gc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* llena todo */
  display: block;
  border-radius: 16px;
}

/* Card central: color y más grande */
.gc-card.is-center {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.15),
    0 8px 10px -6px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border-radius: 16px;
}

/* Cards adyacentes al centro */
.gc-card.is-adjacent {
  filter: grayscale(60%) brightness(0.85);
  transform: scale(0.95);
}

#platforms {
  padding: 120px 0;
  background: #f5f5f5;

  position: relative;
  overflow: hidden;
}

/* Pattern de fondo */
#platforms::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/TEXTURA CARAS 2.png"); /* sin backslash */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.platform-row {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 80px;

  margin-bottom: 120px;
}

.platform-row:last-child {
  margin-bottom: 0;
}

.platform-content h2 {
  font-family: "MelbourneBold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;

  color: var(--dark);

  margin-bottom: 24px;

  font-weight: 800;
}

.platform-content em {
  color: var(--blue);
  font-style: normal;
}

.platform-content h2 span {
  color: var(--blue);
}

.platform-content p {
  font-size: 1rem;
  line-height: 1.7;

  color: #3f3f3f;

  margin-bottom: 24px;

  max-width: 520px;
}

.platform-content strong {
  display: block;

  font-size: 1rem;
  color: var(--dark);

  margin-bottom: 32px;
}

.platform-content .btn-primary {
  font-family: "MelbourneBold", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  border-radius: 999px;

  font-size: 1.25rem;
  font-weight: bolder;
}

/* MEDIA */

.platform-media {
  position: relative;

  border-radius: 28px;
  overflow: hidden;

  cursor: pointer;

  transition: transform 0.4s ease;
}

.platform-media:hover {
  transform: translateY(-8px);
}

.platform-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.platform-media video {
  width: 100%;
  display: block;
  max-height: 400px;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
}

/* PLAY */

.platform-play {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 88px;
  height: 88px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease;
}

.platform-media:hover .platform-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.platform-play svg {
  width: 34px;
  height: 34px;

  fill: var(--dark);

  margin-left: 5px;
}

/* MOBILE */

@media (max-width: 992px) {
  .platform-row {
    grid-template-columns: 1fr;
    gap: 48px;

    margin-bottom: 100px;
  }

  .platform-content {
    text-align: center;
  }

  .platform-content p {
    margin-inline: auto;
  }
}

/* ── CONTACT ── */
#contact {
  padding: 100px 0;
  background: var(--blue);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left {
  padding-top: 8px;
  color: var(--white);
}
.contact-features {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
  position: relative;
  padding-left: 18px;
}

.contact-features li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  position: absolute;

  left: 0;
  top: 0.55em;
}
.cf-icon {
  width: 32px;
  height: 32px;
  background: rgba(198, 241, 53, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-form-box {
  background: var(--gray-light);
  border-radius: 24px;
  padding: 48px 40px;
}
.contact-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--dark);
}
.contact-form-box em {
  font-family: "HanivaBold", sans-serif;
  color: var(--blue);
  font-style: normal;
}
.cf-group {
  margin-bottom: 16px;
}
.cf-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid #dde3ee;
  border-radius: 12px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--blue);
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cf-group textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-contact {
  width: fit-content;
  background: var(--green);
  color: var(--blue-mid);
  text-transform: uppercase;
  font-family: "Melbourne", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-contact:hover {
  background: var(--blue-light);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(15, 46, 140, 0.3);
}

/* ── CTA BAND ── */
#cta-band {
  padding: 80px 5%;
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--blue-light) 60%,
    #1a6aff 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 40% 80% at 10% 50%,
      rgba(198, 241, 53, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 30% 60% at 90% 50%,
      rgba(0, 0, 0, 0.2) 0%,
      transparent 60%
    );
  pointer-events: none;
}
#cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
#cta-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-btns {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  color: var(--white);
}
.btn-white {
  background: var(--green);
  color: var(--blue-mid);
  font-family: "Haniva", sans-serif;
  font-weight: 700;
  width: fit-content;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.btn-green-outline {
  background: transparent;
  color: var(--green);
  font-family: "Haniva", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(198, 241, 53, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-green-outline:hover {
  background: rgba(198, 241, 53, 0.1);
  border-color: var(--green);
}

/* ── FOOTER ── */
footer {
  position: relative;
  background: var(--dark);
  padding: 60px 5% 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/TEXTURA CARAS 2.png");
  background-size: cover;
  background-position: center;

  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: "Haniva", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.footer-logo span {
  color: var(--green);
}
.footer-contact {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.footer-contact a:hover {
  color: var(--green);
  background: rgba(255, 255, 255, 0.06);
}
.footer-contact a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-executive {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
}
.footer-executive svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}
.footer-presence {
  background: rgba(198, 241, 53, 0.08);
  border: 1px solid rgba(198, 241, 53, 0.2);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  animation: wa-pulse 3s infinite;
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7);
  }
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }
  .hero-form-card {
    margin-top: 32px;
  }
  #stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }
  .platform-cards {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gc-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ai-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  #stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .ai-features {
    grid-template-columns: 1fr;
  }
  .gc-brands {
    grid-template-columns: 1fr 1fr;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
}

/* ── COUNTER ANIM ── */
.counter {
  display: inline;
}

/* ── TOAST ── */
.form-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.form-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.form-toast.error {
  background: #2a0f0f;
  border-color: rgba(227, 6, 19, 0.3);
}
