/* ===================================================================
   GP Creations — Hero Section
   Colores base extraídos del sitio actual (gpcreationsusa.com)
   =================================================================== */

:root {
  --background: 252 45% 5%;      /* índigo casi negro, tomado del sitio actual */
  --foreground: 40 6% 95%;       /* off-white */
  --hero-sub: 40 6% 82%;
  --muted: 250 12% 65%;

  --grad-1: #6366f1; /* indigo */
  --grad-2: #a855f7; /* purple */
  --grad-3: #fcd34d; /* amber */

  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Clash Grotesk', 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: hsl(var(--foreground));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.hero-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 24px 29px;
  margin-top: 26px;
  font-size: 1rem;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(
    115deg,
    rgba(168, 85, 247, 0.06) 0%,
    rgba(168, 85, 247, 0.14) 28%,
    rgba(216, 180, 254, 0.55) 45%,
    rgba(168, 85, 247, 0.18) 58%,
    rgba(168, 85, 247, 0.06) 100%
  );
  background-size: 260% 260%;
  animation: services-card-shine 9s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta::before { animation: none; }
}

/* ---------- Wrapper / background video ---------- */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  display: none; /* shown via JS only once a src is set */
}

/* Fallback / ambient background used while no video src is configured */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 20% 15%, rgba(99, 102, 241, 0.35), transparent 60%),
    radial-gradient(55% 45% at 85% 20%, rgba(168, 85, 247, 0.3), transparent 60%),
    radial-gradient(50% 40% at 50% 90%, rgba(252, 211, 77, 0.12), transparent 60%),
    hsl(var(--background));
  background-size: 200% 200%;
  animation: gp-drift 22s ease-in-out infinite;
}

@keyframes gp-drift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 60%; }
  100% { background-position: 0% 0%; }
}

/* Darken the video/gradient a bit for text contrast */
.hero-bg-darken {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 10, 0.4);
  pointer-events: none;
}

/* Soft fade at the bottom so the hero doesn't cut into the next section as a hard line */
.hero-bg-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, hsl(var(--background)) 90%);
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-bg-fade {
    height: 160px;
  }
}

.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ---------- Hero section ---------- */
.hero {
  position: relative;
  z-index: 10;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-blur-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(984px, 90vw);
  height: min(527px, 60vw);
  opacity: 0.9;
  background: #030014;
  filter: blur(82px);
  pointer-events: none;
  z-index: -1;
}

/* ---------- Header (floating glass pill navbar) ---------- */
.gp-header-wrap {
  width: 100%;
  padding: clamp(6px, 1vw, 10px) clamp(10px, 3vw, 34px);
  background: transparent;
  position: relative;
  z-index: 999;
  overflow: visible;
}

.gp-header-divider {
  height: 1px;
  margin-top: 6px;
  background: linear-gradient(to right, transparent, hsl(var(--foreground) / 0.4), transparent);
}

.gp-header {
  width: fit-content;
  max-width: 1180px;
  min-height: 42px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 32px);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);

  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.2vw, 28px);

  position: relative;
  isolation: isolate;
  overflow: hidden;

  transition:
    padding 0.28s ease,
    border-radius 0.28s ease,
    min-height 0.28s ease;
}

.gp-logo-link {
  height: clamp(44px, 5vw, 56px);
  max-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  flex-shrink: 0;
  position: absolute;
  left: clamp(10px, 3vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.gp-logo {
  width: auto;
  height: clamp(22px, 2.8vw, 30px);
  max-height: 30px;
  display: block;
  object-fit: contain;
}

.gp-header::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;

  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.18) 28%,
    rgba(255, 255, 255, 0.95) 45%,
    rgba(255, 255, 255, 0.25) 58%,
    rgba(255, 255, 255, 0.10) 100%
  );

  background-size: 260% 260%;
  animation: gpBorderShine 4.5s ease-in-out infinite;

  -webkit-mask:
    linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#ffffff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#ffffff 0 0);
  mask-composite: exclude;

  pointer-events: none;
  z-index: 1;
}

.gp-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 30%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );

  transform: skewX(-20deg);
  animation: gpInnerGlow 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.gp-menu-toggle {
  display: none;
}

.gp-menu-button {
  display: none;
}

.gp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  flex-wrap: nowrap;
  position: relative;
  z-index: 3;
}

.gp-nav-link {
  font-family: 'Clash Grotesk', 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(12px, 1.15vw, 14px);
  line-height: 1;
  letter-spacing: clamp(1.1px, 0.14vw, 1.8px);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    text-shadow 0.25s ease;
}

.gp-nav-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.52);
}

.gp-nav-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 5px;
  border-radius: 8px;
}

@keyframes gpBorderShine {
  0% {
    background-position: 220% 50%;
    opacity: 0.45;
  }

  45% {
    opacity: 0.95;
  }

  100% {
    background-position: -120% 50%;
    opacity: 0.45;
  }
}

@keyframes gpInnerGlow {
  0% {
    left: -35%;
    opacity: 0;
  }

  35% {
    opacity: 0;
  }

  50% {
    opacity: 0.8;
  }

  70% {
    opacity: 0;
  }

  100% {
    left: 115%;
    opacity: 0;
  }
}

/* MOBILE CON MENÚ DESPLEGABLE */
@media (max-width: 767px) {
  .gp-header-wrap {
    padding: 20px 18px 6px;
    overflow: visible;
  }

  .gp-header-divider {
    margin-top: 20px;
    background: linear-gradient(to right, transparent, hsl(var(--foreground) / 0.18), transparent);
  }

  .gp-logo-link {
    left: 36px;
    top: 46px;
  }

  .gp-header {
    width: 100%;
    min-height: 52px;
    height: auto;
    margin: 0 auto;
    padding: 0 16px;
    border-radius: 26px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;

    overflow: hidden;
  }

  .gp-menu-button {
    width: 27px;
    height: 52px;

    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;

    cursor: pointer;
    position: relative;
    z-index: 5;
  }

  .gp-menu-button span {
    width: 100%;
    height: 1px;
    display: block;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);

    transition:
      transform 0.28s ease,
      opacity 0.22s ease,
      width 0.28s ease;
  }

  .gp-menu-button span:nth-child(2) {
    width: 72%;
  }

  .gp-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;

    padding: 0;
    margin: 0;

    border-top: 0 solid rgba(255, 255, 255, 0);

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0;

    position: relative;
    z-index: 4;

    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;

    transition:
      max-height 0.35s ease,
      padding 0.28s ease,
      opacity 0.28s ease,
      transform 0.28s ease,
      border-top 0.28s ease;
  }

  .gp-nav-link {
    width: 100%;
    display: block;

    padding: 10px 0;

    font-size: 13px;
    letter-spacing: 1.7px;
    line-height: 1.2;
    text-align: right;

    color: #ffffff;
    opacity: 1;
    visibility: visible;
    white-space: normal;
  }

  .gp-menu-toggle:checked ~ .gp-menu-button span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .gp-menu-toggle:checked ~ .gp-menu-button span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .gp-menu-toggle:checked ~ .gp-menu-button span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .gp-menu-toggle:checked ~ .gp-nav {
    max-height: 220px;
    padding: 6px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 480px) {
  .gp-header-wrap {
    padding: 20px 16px 6px;
  }

  .gp-header {
    width: 100%;
    min-height: 50px;
    padding: 0 13px;
    border-radius: 24px;
  }

  .gp-menu-button {
    width: 25px;
    height: 50px;
    gap: 5px;
  }

  .gp-nav-link {
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 9px 0;
  }

  .gp-menu-toggle:checked ~ .gp-nav {
    max-height: 200px;
    padding: 5px 0 17px;
  }
}

@media (max-width: 360px) {
  .gp-header-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .gp-header {
    width: 100%;
    padding: 0 12px;
  }

  .gp-logo-link {
    left: 18px;
  }

  .gp-menu-button {
    width: 23px;
  }

  .gp-nav-link {
    font-size: 11px;
    letter-spacing: 1.25px;
  }

  .gp-menu-toggle:checked ~ .gp-nav {
    max-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-header::before,
  .gp-header::after {
    animation: none !important;
  }

  .gp-nav,
  .gp-nav-link,
  .gp-menu-button span {
    transition: none !important;
  }
}

/* ---------- Hero content ---------- */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.hero-headline {
  margin: 0;
  max-width: 920px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 5.6vw, 76px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: hsl(var(--foreground));
}

.hero-headline-dim {
  color: hsl(var(--foreground) / 0.8);
}

.gradient-text {
  font-weight: 600;
  background-image: linear-gradient(to left, var(--grad-1), var(--grad-2), var(--grad-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: hsl(var(--hero-sub));
  font-size: 1.125rem;
  line-height: 2rem;
  max-width: 32rem;
  margin: 40px 0 0;
  opacity: 0.8;
}

/* ---------- Logo marquee ---------- */
.hero-marquee {
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
}

.marquee-container {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
}

.marquee-label {
  color: hsl(var(--foreground) / 0.6);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  flex-shrink: 0;
  margin: 0;
}

.marquee-label-amber {
  background-image: linear-gradient(90deg, var(--grad-3), #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marquee-track-wrap {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: gp-marquee 45s linear infinite;
}

@keyframes gp-marquee {
  from { transform: translateX(0%); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-logo {
  height: 155px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(1) brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.marquee-logo:hover {
  opacity: 1;
}

.marquee-separator {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  color: hsl(var(--foreground) / 0.35);
  user-select: none;
}

/* ---------- Liquid glass utility ---------- */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.15) 80%,
    rgba(255, 255, 255, 0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    flex: 0 0 auto;
    align-items: flex-start;
    text-align: left;
    padding: 55px 24px 40px;
    margin-top: -10px;
  }

  .hero-headline {
    max-width: 960px;
    margin-left: 6px;
    font-size: 46px;
    line-height: 1.05;
  }

  .hero-subtitle {
    margin-left: 6px;
  }

  .hero-marquee {
    padding-top: 110px;
  }
}

@media (max-width: 860px) {
  .marquee-container {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .marquee-label {
    text-align: center;
  }

  .marquee-label-break {
    display: none;
  }

  .marquee-track {
    gap: 16px;
  }

  .marquee-logo {
    height: 140px;
    max-width: 280px;
  }
}

@media (max-width: 520px) {
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4rem;
    margin-top: 16px;
    max-width: 340px;
  }
  .hero-subtitle-break { display: none; }
  .hero-cta { align-self: center; padding: 16px 78px; margin-top: 80px; font-size: 1.1rem; }
}

/* ---------- Services section ---------- */
.services {
  position: relative;
  overflow: hidden;
  background: hsl(var(--background));
  padding: 100px 24px;
}

.services-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 26%, black 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 26%, black 62%, transparent 100%);
}

.services-grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(
    90deg,
    transparent 0px,
    transparent 40px,
    rgba(255, 255, 255, 0.3) 220px,
    transparent 400px,
    transparent 440px
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0px,
    transparent 40px,
    rgba(255, 255, 255, 0.3) 220px,
    transparent 400px,
    transparent 440px
  );
  mask-size: 440px 100%;
  -webkit-mask-size: 440px 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  animation: services-grid-sweep 10s ease-in-out infinite;
}

@keyframes services-grid-sweep {
  0%   { mask-position: -440px 0; -webkit-mask-position: -440px 0; }
  100% { mask-position: calc(100% + 440px) 0; -webkit-mask-position: calc(100% + 440px) 0; }
}

@media (prefers-reduced-motion: reduce) {
  .services-grid-glow { animation: none; opacity: 0; }
}

.services-wave {
  display: none;
}

.services-intro {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 96px;
  text-align: center;
}

.services-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(20px, 4.6vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.nowrap-unit {
  white-space: nowrap;
}

.services-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  justify-content: center;
  gap: 28px;
}

.services-outro {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.services-outro-cta {
  padding: 18px 32px;
  font-size: 1rem;
}

.service-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0812;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    115deg,
    rgba(252, 211, 77, 0.10) 0%,
    rgba(252, 211, 77, 0.22) 28%,
    rgba(252, 230, 150, 0.95) 45%,
    rgba(252, 211, 77, 0.30) 58%,
    rgba(252, 211, 77, 0.10) 100%
  );
  background-size: 260% 260%;
  animation: services-card-shine 9s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

@keyframes services-card-shine {
  0% {
    background-position: 220% 50%;
    opacity: 0.45;
  }
  45% {
    opacity: 0.95;
  }
  100% {
    background-position: -120% 50%;
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-card::before { animation: none; }
}

.service-card-media {
  position: absolute;
  inset: 0;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}

.service-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsl(var(--background)) 0%,
    hsl(var(--background) / 0.85) 32%,
    hsl(var(--background) / 0.25) 62%,
    transparent 100%
  );
}

.service-card-top {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: hsl(var(--foreground) / 0.9);
}

.service-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-2);
  flex-shrink: 0;
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.18);
}

.service-card-bottom {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.service-card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  color: hsl(var(--foreground));
}

.service-card-desc {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.85);
  max-width: 42ch;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-card-tag {
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: hsl(var(--foreground) / 0.75);
}

@media (max-width: 767px) {
  .services {
    padding: 64px 20px;
  }

  .services-intro {
    margin-bottom: 56px;
  }

  .services-heading {
    font-size: 26px;
  }

  .service-card {
    aspect-ratio: 4 / 5;
  }
}

/* ---------- Offerings (white section) ---------- */
.offerings {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 110px 24px;
}

.offerings-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(20, 10, 40, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 10, 40, 0.06) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.offerings-intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.offerings-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1c1c1e;
}

.offerings-heading-nowrap {
  white-space: nowrap;
}

.offerings-heading-accent {
  background-image: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.offerings-subtitle {
  margin: 8px 0 0;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #6b6b70;
}

.offerings-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px 44px;
  max-width: 1280px;
  margin: 110px auto 0;
}

.offering-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 390px;
  max-width: 400px;
}

.offering-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(20, 10, 40, 0.14);
}

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.offering-card:hover img {
  transform: scale(1.08);
}

.offering-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

.offering-item:nth-child(1) .offering-card-overlay,
.offering-item:nth-child(5) .offering-card-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.offering-card-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
}

.offering-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-transform: uppercase;
}

.offering-card-subtitle {
  margin-top: 2px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.offering-btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offering-btn:hover {
  transform: translateY(-2px);
}

.offering-btn-dark {
  background: #0a0a0c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.offering-btn-gradient {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

@media (max-width: 767px) {
  .offerings {
    padding: 64px 20px;
    border-radius: 32px 32px 0 0;
  }

  .offerings-heading-nowrap {
    font-size: 35px;
  }

  .offerings-subtitle {
    font-size: 1.02rem;
  }

  .offerings-grid {
    margin-top: 40px;
    gap: 64px 20px;
  }

  .offering-card-title {
    font-size: 30px;
  }

  .offering-item {
    flex: 0 1 100%;
    max-width: 320px;
  }
}

/* ---------- Podcast section ---------- */
.podcast {
  position: relative;
  overflow: hidden;
  background: hsl(var(--background));
  padding: 220px 24px;
}

.podcast-flare {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.podcast-flare::before,
.podcast-flare::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 65%;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.podcast-flare::before {
  left: -8%;
  bottom: -15%;
  background: rgba(252, 211, 77, 0.2);
  animation: podcast-blob-amber 15s ease-in-out infinite;
}

.podcast-flare::after {
  right: -8%;
  bottom: -10%;
  background: rgba(168, 85, 247, 0.2);
  animation: podcast-blob-purple 15s ease-in-out infinite;
}

@keyframes podcast-blob-amber {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(45%, -20%) scale(1.1); }
  40%  { transform: translate(15%, -85%) scale(1.2); }
  60%  { transform: translate(-20%, -55%) scale(0.95); }
  80%  { transform: translate(30%, -55%) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes podcast-blob-purple {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(-40%, -30%) scale(1.05); }
  40%  { transform: translate(-10%, -80%) scale(0.95); }
  60%  { transform: translate(25%, -50%) scale(1.2); }
  80%  { transform: translate(-30%, -50%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .podcast-flare::before,
  .podcast-flare::after {
    animation: none;
  }
}

.podcast-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 170px;
  align-items: center;
}

.podcast-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.podcast-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--grad-2);
}

.podcast-badge-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.podcast-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.podcast-brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(48px, 6.2vw, 80px);
  line-height: 1.1;
  color: hsl(var(--foreground));
}

.podcast-heading {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: hsl(var(--foreground) / 0.85);
}

.podcast-subtitle {
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: hsl(var(--hero-sub) / 0.85);
  max-width: 46ch;
}

.podcast-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.podcast-tag {
  padding: 10px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.08);
  font-size: 0.85rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.9);
  white-space: nowrap;
}

.podcast-spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 130px;
  padding: 16px 28px;
  border-radius: 9999px;
  background: #1db954;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(29, 185, 84, 0.3);
}

.podcast-spotify-btn:hover {
  transform: translateY(-2px);
}

.podcast-footnote {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: hsl(var(--foreground) / 0.5);
}

.podcast-footnote-break {
  display: none;
}

.podcast-footnote a {
  color: hsl(var(--foreground) / 0.85);
  text-decoration: underline;
}

.podcast-embed {
  position: relative;
  border-radius: 16px;
}

.podcast-embed::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(60% 60% at 50% 50%, rgba(168, 85, 247, 0.55), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.podcast-embed iframe {
  display: block;
  width: 100%;
}

@media (max-width: 900px) {
  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .podcast {
    padding: 60px 20px 130px;
  }

  .podcast-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .podcast-badge,
  .podcast-brand,
  .podcast-tags {
    justify-content: center;
  }

  .podcast-brand {
    margin-top: 50px;
  }

  .podcast-spotify-btn {
    margin-top: 80px;
  }

  .podcast-brand-name {
    font-size: 42px;
  }

  .podcast-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .podcast-heading {
    font-size: 19px;
  }

  .podcast-heading-break {
    display: none;
  }

  .podcast-footnote-break {
    display: inline;
  }

  .podcast-footnote-dot {
    display: none;
  }

  .podcast-tags {
    gap: 10px;
  }

  .podcast-tag {
    font-size: 0.8rem;
    padding: 9px 14px;
  }
}

/* ---------- Lead magnet (white section) ---------- */
.lead-magnet {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 110px 24px;
}

.lead-magnet-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.lead-magnet-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(20, 10, 40, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 10, 40, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.lead-magnet-grid {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 56px;
  align-items: center;
}

.lead-magnet-visual {
  display: flex;
  justify-content: center;
}

.lead-magnet-photo-rings {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lead-magnet-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 85, 247, 0.55);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.7;
  pointer-events: none;
  animation: gp-ring-pulse 3.6s ease-out infinite;
}

.lead-magnet-ring:nth-child(2) {
  animation-delay: 1.2s;
}

.lead-magnet-ring:nth-child(3) {
  animation-delay: 2.4s;
}

@keyframes gp-ring-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.55);
    opacity: 0;
  }
}

.lead-magnet-photo-frame {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(
    from 180deg,
    var(--grad-2) 0%,
    rgba(168, 85, 247, 0.15) 30%,
    rgba(168, 85, 247, 0.7) 55%,
    var(--grad-2) 100%
  );
  box-shadow: 0 20px 55px rgba(168, 85, 247, 0.35);
}

.lead-magnet-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid #ffffff;
}

.lead-magnet-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.08;
  color: #1c1c1e;
}

.lead-magnet-heading-mobile {
  display: none;
}

.lead-magnet-heading-amber {
  background-image: linear-gradient(90deg, var(--grad-3), #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-magnet-heading-accent {
  color: #1c1c1e;
}

.lead-magnet-subtitle {
  margin: 14px 0 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #6b6b70;
  max-width: 44ch;
}

.lead-magnet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 15px 28px;
  border-radius: 9999px;
  border: 1.5px solid var(--grad-2);
  background: #ffffff;
  color: var(--grad-2);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lead-magnet-btn:hover {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .lead-magnet-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
}

@media (max-width: 900px) {

  .lead-magnet-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .lead-magnet {
    padding: 64px 20px;
    border-radius: 32px 32px 0 0;
  }

  .lead-magnet-grid {
    gap: 18px;
  }

  .lead-magnet-heading-desktop {
    display: none;
  }

  .lead-magnet-heading-mobile {
    display: block;
    font-size: 38px;
  }

  .lead-magnet-heading-amber {
    font-size: 42px;
  }

  .lead-magnet-heading-sub {
    display: block;
    margin-top: 4px;
    font-size: 18px;
    font-weight: 500;
  }

  .lead-magnet-subtitle {
    display: none;
  }

  .lead-magnet-photo-rings {
    width: 220px;
    height: 220px;
    margin-bottom: 20px;
  }

  .lead-magnet-photo-frame {
    width: 150px;
    height: 150px;
  }

  .lead-magnet-ring {
    width: 150px;
    height: 150px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: hsl(var(--background));
  padding: 0 24px 0;
  border-radius: 32px 32px 0 0;
}

.footer-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 20% 15%, rgba(99, 102, 241, 0.35), transparent 60%),
    radial-gradient(55% 45% at 85% 20%, rgba(168, 85, 247, 0.3), transparent 60%),
    radial-gradient(50% 40% at 50% 90%, rgba(252, 211, 77, 0.12), transparent 60%);
  background-size: 200% 200%;
  animation: gp-drift 22s ease-in-out infinite;
}

.footer-top {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 130px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-tagline p {
  margin: 0;
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: hsl(var(--foreground) / 0.9);
}

.footer-legal {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-legal a {
  color: hsl(var(--foreground) / 0.85);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-legal span {
  color: hsl(var(--foreground) / 0.4);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-socials a svg {
  width: 26px;
  height: 26px;
}

.footer-socials a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.footer-copyright {
  margin: 0;
  font-size: 0.85rem;
  color: hsl(var(--foreground) / 0.6);
}

.footer-wordmark {
  width: 100vw;
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%) translateY(0.234em);
  margin-top: 60px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(48px, 16vw, 210px);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.03em;
  background-image: linear-gradient(180deg, hsl(var(--foreground) / 0.28), hsl(var(--foreground) / 0.02));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  user-select: none;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 0 20px 0;
  }

  .footer-tagline {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-top: 24px;
  }

  .footer-right {
    align-items: center;
    gap: 6px;
  }

  .footer-legal {
    display: none;
  }

  .footer-tagline-break {
    display: none;
  }

  .footer-wordmark {
    margin-top: 4px;
  }
}

/* ===================================================================
   Acerca de Nosotros (subpage)
   =================================================================== */

.gp-nav-link-active {
  background-image: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero-wrapper {
  position: relative;
  overflow: hidden;
}

.about-hero {
  position: relative;
  z-index: 10;
}

.about-hero-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.about-hero-text {
  max-width: 620px;
}

.about-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--grad-2);
}

.about-hero-title {
  margin: 20px 0 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.about-hero-subtitle {
  margin: 22px 0 0;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.85);
}

.about-hero-photo-rings {
  width: 440px;
  height: 440px;
  flex-shrink: 0;
}

.about-hero-photo-rings .lead-magnet-photo-frame {
  width: 300px;
  height: 300px;
}

.about-hero-photo-rings .lead-magnet-ring {
  width: 300px;
  height: 300px;
}

/* ---------- Story ---------- */
.about-story {
  background: hsl(var(--background));
  padding: 100px 24px;
}

.about-story-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: start;
}

.about-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grad-2);
}

.about-story-heading {
  margin: 16px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  color: hsl(var(--foreground));
}

.about-story-text p {
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(var(--hero-sub) / 0.85);
  max-width: 58ch;
}

.about-story-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 34px;
}

.about-stat-label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: hsl(var(--hero-sub) / 0.75);
}

/* ---------- Values ---------- */
.about-values {
  background: hsl(var(--background));
  padding: 40px 24px 120px;
}

.about-values-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-values-heading {
  margin: 16px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.25;
  color: hsl(var(--foreground));
}

.about-values-heading-break {
  display: none;
}

.about-values-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-card {
  position: relative;
  padding: 32px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #ffffff;
}

.about-value-icon svg {
  width: 24px;
  height: 24px;
}

.about-value-title {
  margin: 20px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(var(--foreground));
}

.about-value-desc {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.8);
}

/* ---------- CTA ---------- */
.about-cta {
  position: relative;
  overflow: hidden;
  background: hsl(var(--background));
  padding: 110px 24px;
  text-align: center;
}

.about-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 55% at 50% 40%, rgba(168, 85, 247, 0.25), transparent 70%);
}

.about-cta-content {
  position: relative;
  z-index: 1;
}

.about-cta-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  color: hsl(var(--foreground));
}

.about-cta-heading-break {
  display: none;
}

.about-cta-subtitle {
  margin: 14px 0 0;
  font-size: 1rem;
  color: hsl(var(--hero-sub) / 0.85);
}

.about-cta-btn {
  margin-top: 30px;
  padding: 18px 32px;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 16px;
  }

  .about-hero-text {
    max-width: 100%;
  }

  .about-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .about-hero-content {
    padding: 30px 20px 50px;
  }

  .about-hero-photo-rings {
    width: 280px;
    height: 280px;
  }

  .about-hero-photo-rings .lead-magnet-photo-frame,
  .about-hero-photo-rings .lead-magnet-ring {
    width: 190px;
    height: 190px;
  }

  .about-story {
    padding: 64px 20px;
  }

  .about-values {
    padding: 20px 20px 70px;
  }

  .about-values-heading-break {
    display: block;
  }

  .about-cta {
    padding: 70px 20px;
  }

  .about-cta-heading-break {
    display: block;
  }
}

/* ===================================================================
   Kit de IA (subpage)
   =================================================================== */

.kit-hero-wrapper {
  position: relative;
  overflow: hidden;
}

.kit-body {
  position: relative;
  overflow: hidden;
  background: hsl(var(--background));
}

.kit-body-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
}

.kit-hero {
  position: relative;
  z-index: 10;
}

.kit-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kit-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grad-2);
}

.kit-hero-title {
  margin: 22px 0 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.25;
  color: hsl(var(--foreground));
}

.kit-video-frame {
  width: 100%;
  max-width: 780px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 24px 50px rgba(90, 50, 180, 0.25);
}

.kit-video-iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border: 0;
}

.kit-cta-btn {
  margin-top: 32px;
  padding: 18px 34px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.35);
}

.kit-cta-btn:hover {
  transform: translateY(-2px);
}

/* ---------- Shared section helpers ---------- */
.kit-centered-kicker {
  display: block;
  text-align: center;
}

.kit-offer-heading {
  margin: 16px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  text-align: center;
  color: hsl(var(--foreground));
}

.kit-heading-break {
  display: none;
}

.kit-offer-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: hsl(var(--hero-sub) / 0.85);
}

.kit-centered-subtitle {
  max-width: 560px;
  margin: 18px auto 0;
  text-align: center;
}

/* ---------- Offer section ---------- */
.kit-offer {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.kit-offer-grid {
  max-width: 1080px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.kit-offer-text .kit-offer-subtitle {
  margin: 0;
}

.kit-price-row {
  margin-top: 26px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.kit-price-old {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: hsl(var(--foreground) / 0.4);
  text-decoration: line-through;
}

.kit-price-new {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.6rem;
  color: hsl(var(--foreground));
}

.kit-price-label {
  font-size: 0.78rem;
  line-height: 1.4;
  color: hsl(var(--hero-sub) / 0.7);
}

.kit-trust-line {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: hsl(var(--foreground) / 0.5);
}

.kit-mockup {
  display: flex;
  justify-content: center;
}

.kit-mockup-card {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(90, 50, 180, 0.25);
  transform: rotate(-2deg);
}

.kit-mockup-card img {
  width: 100%;
  display: block;
}

.kit-feature-grid {
  max-width: 1080px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kit-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: hsl(var(--foreground) / 0.9);
}

.kit-feature em {
  font-style: normal;
  color: var(--grad-2);
}

.kit-feature-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-1);
  color: #fff;
  font-size: 13px;
}

.kit-feature:nth-child(3n+2) .kit-feature-icon {
  background: var(--grad-3);
  color: #1c1c1e;
}

.kit-feature:nth-child(3n) .kit-feature-icon {
  background: #6b6b76;
}

/* ---------- Pain section ---------- */
.kit-pain {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.kit-pain-grid {
  max-width: 1080px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kit-pain-card {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kit-pain-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.kit-pain-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kit-pain-card-title {
  margin: 18px 18px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: hsl(var(--foreground));
}

.kit-pain-card-desc {
  margin: 8px 18px 18px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.75);
}

/* ---------- Transition ---------- */
.kit-transition {
  position: relative;
  z-index: 1;
  padding: 30px 24px 100px;
  text-align: center;
}

.kit-transition-text {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  color: hsl(var(--foreground));
}

.kit-transition-subtitle {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: hsl(var(--hero-sub) / 0.8);
}

/* ---------- Achieve section ---------- */
.kit-achieve {
  position: relative;
  z-index: 1;
  padding: 30px 24px 100px;
}

.kit-achieve-grid {
  max-width: 1180px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kit-achieve-card {
  padding: 26px 22px;
}

.kit-achieve-card .about-value-icon {
  background: var(--grad-1);
}

.kit-achieve-card:nth-child(3n+2) .about-value-icon {
  background: var(--grad-3);
  color: #1c1c1e;
}

.kit-achieve-card:nth-child(3n) .about-value-icon {
  background: #6b6b76;
}

.kit-stats-row {
  max-width: 700px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kit-stat {
  text-align: center;
  align-items: center;
}

/* ---------- Author section ---------- */
.kit-author {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

.kit-author-grid {
  max-width: 980px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.kit-author-photo {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.kit-author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kit-author-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 34px);
  color: hsl(var(--foreground));
}

.kit-author-handle {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--grad-2);
}

.kit-author-bio {
  margin: 18px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: hsl(var(--hero-sub) / 0.85);
  max-width: 52ch;
}

.kit-author-stats {
  display: flex;
  gap: 28px;
  margin-top: 24px;
}

.kit-author-stat {
  display: flex;
  flex-direction: column;
}

.kit-author-stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}

.kit-author-stat-label {
  margin-top: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: hsl(var(--hero-sub) / 0.6);
}

.kit-author-checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kit-author-checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: hsl(var(--foreground) / 0.9);
}

.kit-author-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--grad-2);
  font-weight: 700;
}

/* ---------- Final CTA ---------- */
.kit-final-cta {
  position: relative;
  z-index: 1;
  padding: 0 24px 110px;
}

.kit-final-cta-grid {
  margin-top: 0;
}

.kit-final-heading {
  text-align: left;
  margin: 0;
}

@media (max-width: 900px) {
  .kit-offer-grid,
  .kit-author-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kit-offer-text {
    order: 2;
  }

  .kit-mockup {
    order: 1;
  }

  .kit-price-row {
    justify-content: center;
  }

  .kit-author-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .kit-author-stats,
  .kit-author-checklist {
    align-items: center;
  }

  .kit-author-checklist li {
    text-align: left;
  }

  .kit-final-heading {
    text-align: center;
  }

  .kit-pain-grid,
  .kit-feature-grid,
  .kit-achieve-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .kit-pain-grid,
  .kit-feature-grid,
  .kit-achieve-grid,
  .kit-stats-row {
    grid-template-columns: 1fr;
  }

  .kit-author-stats {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .kit-hero-content {
    padding: 40px 20px 70px;
  }

  .kit-offer,
  .kit-pain,
  .kit-author {
    padding: 64px 20px;
  }

  .kit-transition,
  .kit-achieve {
    padding: 20px 20px 64px;
  }

  .kit-final-cta {
    padding: 0 20px 70px;
  }

  .kit-heading-break {
    display: block;
  }

  .kit-body-grid-bg {
    opacity: 0.55;
  }
}

/* ===================================================================
   IA Studio (subpage)
   =================================================================== */

.studio-hero-wrapper {
  position: relative;
  overflow: hidden;
}

.studio-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.studio-hero-bg-darken {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 10, 0.72);
  pointer-events: none;
}

.studio-hero-wrapper .particles-canvas {
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5)) brightness(1.5);
}

.studio-hero {
  position: relative;
  z-index: 10;
}

.studio-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px 24px 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.studio-body {
  position: relative;
  overflow: hidden;
  background: hsl(var(--background));
  padding-top: 70px;
  padding-bottom: 240px;
}

.studio-body-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 80%, transparent 100%);
}

.studio-body-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.studio-body-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.studio-hero-title {
  margin: 40px 0 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: 0.98;
  color: hsl(var(--foreground));
}

.studio-hero-title-line2 {
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
}

.studio-title-break-mobile,
.title-break-mobile {
  display: none;
}

.text-mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .studio-title-break-mobile,
  .title-break-mobile {
    display: block;
  }

  .studio-title-break-desktop,
  .title-break-desktop {
    display: none;
  }

  .text-mobile-only {
    display: inline;
  }

  .text-desktop-only {
    display: none;
  }

  .ads-eyebrow.social-eyebrow-desktop-only {
    display: none;
  }
}

.studio-hero-subtitle {
  margin: 18px 0 0;
  font-size: 1rem;
  color: hsl(var(--hero-sub) / 0.8);
}

.studio-hero-chips {
  display: none;
}

@media (max-width: 767px) {
  .studio-hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 32px auto 0;
    max-width: 300px;
  }
}

.studio-hero-chip {
  padding: 9px 16px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.9);
  white-space: nowrap;
}

.studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 9px 18px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grad-2);
}

.studio-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-2);
}

.studio-cards {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.studio-card {
  text-align: left;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), #0a0812;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--grad-2);
}

.studio-card:nth-child(2) .studio-card-icon {
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  border: none;
  color: #1c1c1e;
}

.studio-card-icon svg {
  width: 20px;
  height: 20px;
}

.studio-card-title {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  color: hsl(var(--foreground));
}

.studio-card-desc {
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.75);
}

.studio-card-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.studio-card-tag {
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.12);
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.85);
}

.studio-cta-btn {
  margin-top: 160px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  box-shadow: 0 16px 34px rgba(252, 211, 77, 0.3);
}

.studio-secondary-link {
  margin-top: 18px;
  font-size: 0.9rem;
  color: hsl(var(--hero-sub) / 0.75);
  text-decoration: none;
}

.studio-secondary-link:hover {
  color: hsl(var(--foreground));
}

.studio-stats {
  margin-top: 90px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.studio-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.studio-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: hsl(var(--foreground) / 0.8);
}

.studio-stat-icon svg {
  width: 18px;
  height: 18px;
}

.studio-stat-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 0.78rem;
  color: hsl(var(--hero-sub) / 0.7);
}

.studio-stat-text strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: hsl(var(--foreground));
}

@media (max-width: 900px) {
  .studio-cards {
    grid-template-columns: 1fr;
  }

  .studio-stats {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .studio-hero-content {
    padding: 60px 20px 60px;
  }

  .studio-body {
    padding-bottom: 130px;
  }

  .studio-body-content {
    padding: 0 20px;
  }

  .studio-hero-title {
    font-size: 42px;
    margin-top: 20px;
  }

  .studio-cards {
    margin-top: -20px;
  }

  .studio-cta-btn {
    margin-top: 50px;
  }

  .studio-stats {
    flex-direction: column;
    align-items: stretch;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    gap: 24px;
  }

  .studio-stat {
    width: 100%;
  }
}

/* ===================================================================
   Recursos Gratis / Leads (subpage)
   =================================================================== */

.leads-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.leads-hero {
  position: relative;
  z-index: 10;
}

.leads-hero-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 140px 24px 140px;
  text-align: center;
}

.leads-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grad-2);
}

.leads-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-2);
}

.leads-hero-title {
  margin: 24px 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}

.leads-hero-subtitle {
  margin: 20px 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.8);
}

.leads-form {
  margin: 44px auto 0;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.leads-input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: hsl(var(--foreground));
}

.leads-input::placeholder {
  color: hsl(var(--hero-sub) / 0.5);
}

.leads-input:focus {
  outline: none;
  border-color: var(--grad-2);
  background: rgba(255, 255, 255, 0.1);
}

.leads-submit-btn {
  padding: 17px 40px;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 16px 34px rgba(252, 211, 77, 0.3);
  transition: transform 0.2s ease;
}

.leads-submit-btn:hover {
  transform: translateY(-2px);
}

.leads-submit-btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.leads-honeypot {
  display: none !important;
}

.leads-form-status {
  margin: 18px 0 0;
  min-height: 1.2em;
  font-size: 0.92rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.leads-form-status.is-success {
  color: #34d399;
}

.leads-form-status.is-error {
  color: #f87171;
}

@media (max-width: 767px) {
  .leads-hero-content {
    padding: 80px 20px 90px;
  }

  .leads-subtitle-break {
    display: none;
  }
}

/* ===================================================================
   Desarrollo Web (subpage)
   =================================================================== */

.webdev-hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
}

.webdev-hero {
  position: relative;
  z-index: 10;
  padding-bottom: 90px;
}

.webdev-hero-body {
  position: relative;
  z-index: 10;
  padding-bottom: 100px;
}

.webdev-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 185px 24px 0;
  text-align: center;
}

.webdev-hero-content .ads-hero-btn {
  margin-top: 95px;
  padding-left: 48px;
  padding-right: 48px;
}

.webdev-matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.webdev-hero-wrapper .hero-bg-fade {
  height: 380px;
}

.webdev-hero-title {
  margin: 0 auto;
  max-width: 920px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(30px, 5.6vw, 76px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: hsl(var(--foreground));
}

/* ---------- Features row ---------- */
.webdev-features {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 10px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.webdev-feature {
  padding: 22px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.webdev-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  color: hsl(var(--foreground) / 0.65);
}

.webdev-features-hub {
  display: none;
}

.webdev-feature-icon svg {
  width: 17px;
  height: 17px;
}

.webdev-feature-title {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: hsl(var(--foreground));
}

.webdev-feature-desc {
  margin: 6px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.7);
}

/* ---------- Pricing plans ---------- */
.webdev-plans {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 160px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.webdev-plan {
  padding: 30px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.webdev-plan-featured {
  background: rgba(168, 85, 247, 0.07);
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 20px 50px rgba(90, 50, 180, 0.25);
}

.webdev-plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(168, 85, 247, 0.12);
  color: var(--grad-2);
}

.webdev-plan-icon svg {
  width: 20px;
  height: 20px;
}

.webdev-plan-title {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: hsl(var(--foreground));
}

.webdev-plan-desc {
  margin: 8px 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.75);
  min-height: 42px;
}

.webdev-plan-price {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.webdev-plan-price-label {
  font-size: 0.8rem;
  color: hsl(var(--hero-sub) / 0.6);
}

.webdev-plan-price-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: hsl(var(--foreground));
}

.webdev-plan-price-suffix {
  font-size: 0.85rem;
  color: hsl(var(--hero-sub) / 0.6);
}

.webdev-plan-delivery {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: hsl(var(--hero-sub) / 0.55);
}

.webdev-plan-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.webdev-plan-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: hsl(var(--foreground) / 0.85);
}

.webdev-plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--grad-2);
  font-weight: 700;
  font-size: 0.8rem;
}

.webdev-plan-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: hsl(var(--foreground));
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.webdev-plan-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.webdev-plan-btn-solid {
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  border: none;
  box-shadow: 0 14px 30px rgba(252, 211, 77, 0.3);
}

.webdev-plan-btn-solid:hover {
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
}

/* ---------- Process ---------- */
.webdev-process {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 190px auto 0;
  padding: 0 24px;
  text-align: center;
}

.webdev-process-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 42px);
  color: hsl(var(--foreground));
}

.webdev-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.webdev-step {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 4px 20px;
}

.webdev-step[open] {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.4);
}

.webdev-step-summary {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.webdev-step-summary::-webkit-details-marker {
  display: none;
}

.webdev-step-label {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.75rem;
  font-weight: 600;
  background-image: linear-gradient(90deg, var(--grad-3), #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.webdev-step-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: hsl(var(--foreground));
}

.webdev-step-desc {
  margin: 0 0 18px;
  padding-left: 62px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.75);
}

/* ---------- CTA band ---------- */
.webdev-cta {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 56px auto 0;
  padding: 48px 32px;
  border-radius: 22px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  text-align: center;
}

.webdev-cta-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  color: hsl(var(--foreground));
}

.webdev-cta-subtitle {
  margin: 14px auto 0;
  max-width: 50ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.8);
}

.webdev-cta-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 16px 34px rgba(252, 211, 77, 0.3);
  transition: transform 0.2s ease;
}

.webdev-cta-btn:hover {
  transform: translateY(-2px);
}

/* ---------- Portfolio (white section) ---------- */
.webdev-portfolio {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 100px 24px;
}

.webdev-portfolio-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(20, 10, 40, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 10, 40, 0.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.webdev-portfolio-intro,
.webdev-portfolio-grid,
.webdev-portfolio-outro {
  position: relative;
  z-index: 1;
}

.webdev-portfolio-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.webdev-portfolio-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.1);
  color: var(--grad-2);
}

.webdev-portfolio-heading {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.2;
  color: #1c1c1e;
  white-space: nowrap;
}

.webdev-portfolio-heading-break {
  display: none;
}

.webdev-portfolio-heading-accent {
  background-image: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.webdev-portfolio-subtitle {
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #6b6b70;
}

.webdev-portfolio-grid {
  max-width: 1180px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.webdev-portfolio-card {
  border-radius: 18px;
  overflow: hidden;
  background: #faf9fc;
  border: 1px solid rgba(28, 28, 30, 0.08);
  box-shadow: 0 16px 34px rgba(20, 10, 40, 0.08);
  text-align: left;
}

.webdev-portfolio-media {
  background: #0b0812;
}

.webdev-portfolio-thumb {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.webdev-portfolio-tag {
  display: inline-block;
  margin: 18px 20px 0;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.1);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grad-2);
}

.webdev-portfolio-title {
  margin: 12px 20px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: #1c1c1e;
}

.webdev-portfolio-desc {
  margin: 8px 20px 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #6b6b70;
}

.webdev-portfolio-link {
  display: inline-block;
  margin: 14px 20px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grad-2);
}

.webdev-portfolio-outro {
  margin-top: 56px;
  text-align: center;
}

.webdev-portfolio-outro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 16px 34px rgba(252, 211, 77, 0.3);
  transition: transform 0.2s ease;
}

.webdev-portfolio-outro-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .webdev-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .webdev-plans {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .webdev-portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

@media (max-width: 767px) {
  .webdev-hero-content {
    padding: 45px 20px 0;
  }

  .webdev-hero-content .ads-hero-btn {
    margin-top: 75px;
    padding-left: 42px;
    padding-right: 42px;
  }

  .webdev-hero-wrapper .hero-bg-fade {
    height: 220px;
  }

  .webdev-features {
    margin-top: 0px;
  }

  .webdev-features-hub {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
    color: #fff;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    z-index: 2;
  }

  .webdev-features-hub svg {
    width: 20px;
    height: 20px;
  }

  .webdev-features-hub.hub-pulse {
    animation: webdev-hub-pulse 1.6s ease-out;
  }

  @keyframes webdev-hub-pulse {
    0% { box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4), 0 0 0 0 rgba(168, 85, 247, 0.5); }
    70% { box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4), 0 0 0 26px rgba(168, 85, 247, 0); }
    100% { box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4), 0 0 0 0 rgba(168, 85, 247, 0); }
  }

  .webdev-feature.hub-anim {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease-out;
    transform: translate(var(--from-x, 0), var(--from-y, 0)) scale(0.25);
    opacity: 0;
  }

  .webdev-feature.hub-anim.hub-anim-in {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  @media (prefers-reduced-motion: reduce) {
    .webdev-feature.hub-anim {
      transition: none;
      transform: none;
      opacity: 1;
    }
    .webdev-features-hub.hub-pulse {
      animation: none;
    }
  }

  .webdev-plans {
    margin-top: 110px;
  }

  .webdev-process {
    margin-top: 90px;
  }

  .webdev-cta {
    margin-top: 40px;
    padding: 36px 22px;
  }

  .webdev-portfolio {
    padding: 64px 20px;
  }

  .webdev-portfolio-grid {
    margin-top: 40px;
  }

  .webdev-hero-title {
    font-size: 34px;
    line-height: 1.15;
  }

  .webdev-portfolio-heading {
    font-size: 28px;
    white-space: normal;
  }

  .webdev-portfolio-heading-break {
    display: block;
  }
}

/* ===================================================================
   Consultoría (subpage)
   =================================================================== */

.consult-hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
}

.consult-particles-zone {
  position: absolute;
  inset: 0;
  height: 950px;
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}

.consult-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.consult-hero {
  position: relative;
  z-index: 10;
  padding-bottom: 90px;
}

.consult-hero-content {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 24px 0;
  text-align: center;
}

.consult-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed rgba(168, 85, 247, 0.25);
  pointer-events: none;
}

.consult-hero-title {
  position: relative;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.25;
  color: hsl(var(--foreground));
}

@media (max-width: 767px) {
  .consult-hero-title {
    font-size: 30px;
    line-height: 1.12;
  }
}

.consult-pain-grid {
  position: relative;
  margin: 80px auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.consult-pain {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 12px;
  background: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), hsl(var(--background));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.45;
  color: hsl(var(--hero-sub) / 0.85);
}

.consult-pain-dot {
  flex-shrink: 0;
  margin-top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.5px solid var(--grad-2);
}

/* ---------- Founder ---------- */
.consult-founder {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 90px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 40px;
  align-items: center;
}

.consult-founder-photo {
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.consult-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consult-founder-text {
  text-align: left;
}

.consult-founder-kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grad-2);
}

.consult-founder-heading {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 38px);
  color: hsl(var(--foreground));
}

.consult-founder-bio {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.85);
}

.consult-section-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.15;
  color: hsl(var(--foreground));
  text-align: center;
}

.consult-section-subtitle {
  margin: 12px auto 0;
  max-width: 50ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.75);
  text-align: center;
}

.consult-deliverables .consult-section-heading {
  font-size: clamp(28px, 3vw, 38px);
}

.consult-deliverables .consult-section-subtitle {
  font-size: 1rem;
  line-height: 1.2;
}


/* ---------- Areas ---------- */
.consult-areas {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 90px auto 0;
  padding: 0 24px;
}

.consult-areas-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.consult-area-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), hsl(var(--background));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.consult-area-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #ffffff;
}

.consult-area-icon svg {
  width: 20px;
  height: 20px;
}

.consult-area-card:nth-child(2) .consult-area-icon {
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
}

.consult-area-title {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: hsl(var(--foreground));
}

.consult-area-desc {
  margin: 8px 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.75);
}

/* ---------- Deliverables ---------- */
.consult-deliverables {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 90px auto 0;
  padding: 0 24px;
}

.consult-deliverables-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.consult-deliverable-card {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)), hsl(var(--background));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: left;
}

.consult-deliverable-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--grad-2);
}

.consult-deliverable-tag svg {
  width: 15px;
  height: 15px;
}

.consult-deliverable-title {
  margin: 6px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: hsl(var(--foreground));
}

.consult-deliverable-desc {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.8);
}

/* ---------- Process ---------- */
.consult-process {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 90px auto 0;
  padding: 0 24px;
}

.consult-steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-step {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  background: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), hsl(var(--background));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 22px;
}

.consult-step[open] {
  background: linear-gradient(rgba(168, 85, 247, 0.08), rgba(168, 85, 247, 0.08)), hsl(var(--background));
  border-color: rgba(168, 85, 247, 0.35);
}

.consult-step-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.consult-step-summary::-webkit-details-marker {
  display: none;
}

.consult-step-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.consult-step-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.consult-step-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: hsl(var(--foreground));
}

.consult-step-subtitle {
  margin-top: 2px;
  font-size: 0.78rem;
  color: hsl(var(--hero-sub) / 0.6);
}

.consult-step-desc {
  margin: 0 0 18px;
  padding-left: 46px;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.75);
}

/* ---------- CTA ---------- */
.consult-cta {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 90px auto 0;
  padding: 48px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.22), rgba(168, 85, 247, 0.22));
  border: 1px solid rgba(168, 85, 247, 0.3);
  text-align: center;
}

.consult-cta-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  color: hsl(var(--foreground));
}

.consult-cta-subtitle {
  margin: 14px auto 0;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.85);
}

.consult-cta-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 16px 34px rgba(252, 211, 77, 0.3);
  transition: transform 0.2s ease;
}

.consult-cta-btn svg {
  width: 18px;
  height: 18px;
}

.consult-cta-btn:hover {
  transform: translateY(-2px);
}

.consult-cta-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: hsl(var(--hero-sub) / 0.55);
}

/* ---------- Quote ---------- */
.consult-quote {
  margin: 56px auto 0;
  max-width: 500px;
  padding: 0 24px;
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  color: hsl(var(--hero-sub) / 0.6);
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1db954;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(29, 185, 84, 0.4);
  transition: transform 0.2s ease;
}

.wa-float-btn-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.wa-float-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .consult-areas-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .consult-deliverables-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .consult-pain-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .consult-hero-content {
    padding: 40px 20px 0;
  }

  .consult-pain-grid {
    grid-template-columns: 1fr;
  }

  .consult-hero-glow {
    width: 90vw;
  }

  .consult-areas {
    margin-top: 76px;
  }

  .consult-process {
    margin-top: 96px;
  }

  .consult-section-heading,
  .consult-deliverables .consult-section-heading {
    font-size: 28px;
    line-height: 1.15;
  }

  .consult-section-subtitle,
  .consult-deliverables .consult-section-subtitle {
    font-size: 16px;
    line-height: 1.2;
  }

  .consult-deliverables {
    margin-top: 110px;
  }

  .consult-deliverables-grid {
    margin-top: 32px;
  }

  .consult-process .consult-section-subtitle {
    margin-top: 6px;
  }

  .consult-steps {
    margin-top: 42px;
  }

  .consult-founder {
    grid-template-columns: 1fr;
    max-width: 355px;
    margin-top: 56px;
    gap: 20px;
    text-align: center;
  }

  .consult-founder-photo {
    order: 2;
    max-width: 260px;
    margin: 0 auto;
  }

  .consult-founder-text {
    order: 1;
    text-align: center;
  }

  .consult-cta {
    margin-top: 56px;
    padding: 30px 20px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }

  .wa-float-btn {
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
  }

  .wa-float-btn-icon {
    width: 31px;
    height: 31px;
  }
}

/* ===================================================================
   Branding (subpage)
   =================================================================== */

.brand-hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
}

.brand-hero {
  position: relative;
  z-index: 10;
  padding-bottom: 90px;
}

.brand-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px 0;
  text-align: center;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grad-2);
}

.brand-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-2);
}

.brand-hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 1.1;
  color: hsl(var(--foreground));
}

.brand-hero-subtitle {
  margin: 8px auto 0;
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.8);
}

.brand-hero-btn {
  margin-top: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 16px 34px rgba(252, 211, 77, 0.3);
  transition: transform 0.2s ease;
}

.brand-hero-btn:hover {
  transform: translateY(-2px);
}

/* ---------- Pain grid ---------- */
.brand-pain-grid {
  position: relative;
  z-index: 1;
  margin: 80px auto 0;
  max-width: 1080px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-pain {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
}

.brand-pain-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: hsl(var(--foreground) / 0.75);
}

.brand-pain-icon svg {
  width: 20px;
  height: 20px;
}

.brand-pain-text {
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.9);
}

.brand-section-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px);
  color: hsl(var(--foreground));
  text-align: center;
}

.brand-section-subtitle {
  margin: 12px auto 0;
  max-width: 50ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.75);
  text-align: center;
}

/* ---------- Includes ---------- */
.brand-includes {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 90px auto 0;
  padding: 0 24px;
}

/* Imagen de identidad: solo en mobile, entre el subtítulo y la tarjeta */
.brand-includes-image {
  display: none;
}

@media (max-width: 767px) {
  .brand-includes-image {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 32px auto 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Acerca la tarjeta a la imagen */
  .brand-includes-image + .brand-includes-list-wrap {
    margin-top: 18px;
  }
}

.brand-includes-list-wrap {
  margin: 44px auto 0;
  max-width: 640px;
  padding: 36px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-includes-label {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: hsl(var(--foreground));
  text-align: left;
}

.brand-includes-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.brand-includes-list li {
  position: relative;
  padding-left: 30px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.4;
  color: hsl(var(--hero-sub) / 0.85);
}

.brand-includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
}

.brand-result-list-wrap .brand-includes-list li::before {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
}

.brand-includes-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #1c1c1e;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* ---------- Result ---------- */
.brand-result {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 90px auto 0;
  padding: 0 24px;
  text-align: center;
}

.brand-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grad-2);
}

.brand-result .brand-section-heading {
  margin-top: 14px;
  line-height: 1.12;
}

.brand-includes .brand-section-subtitle {
  margin-top: 6px;
  line-height: 1.3;
}

/* Botón entre "El resultado" y el portafolio */
.brand-mid-btn {
  margin-top: 40px;
}

.brand-result-list-wrap {
  margin: 30px auto 0;
  max-width: 1100px;
  padding: 24px 40px 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-result-list-wrap .brand-includes-label {
  text-align: center;
}

.brand-result-list-wrap .brand-includes-list {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Portafolio (carrusel) ---------- */
.brand-portfolio {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 90px auto 0;
  padding: 0 24px;
  text-align: center;
}

.gp-carousel {
  position: relative;
  margin-top: 40px;
}

/* Flechas de navegación (solo escritorio) */
.gp-carousel-arrow {
  position: absolute;
  /* centrado sobre las imágenes, descontando la altura de los puntos */
  top: calc(50% - 15px);
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 8, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.gp-carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.gp-carousel-arrow:hover:not(:disabled) {
  background: rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.55);
}

.gp-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.gp-carousel-arrow-prev {
  left: 0;
}

.gp-carousel-arrow-next {
  right: 0;
}

/* Reserva el espacio lateral para que las flechas queden fuera de las imágenes */
@media (min-width: 768px) {
  .gp-carousel {
    padding: 0 58px;
  }
}

.gp-carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gp-carousel-track::-webkit-scrollbar {
  display: none;
}

.gp-carousel-slide {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0812;
}

.gp-carousel-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gp-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.gp-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.gp-carousel-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--grad-2), var(--grad-3));
}

@media (max-width: 767px) {
  .brand-portfolio {
    margin-top: 120px;
    padding: 0 20px;
  }

  .gp-carousel-slide {
    flex-basis: 100%;
  }

  .gp-carousel-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-carousel-track {
    scroll-behavior: auto;
  }
}

/* ---------- Deliverables ---------- */
.brand-deliverables {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 90px auto 0;
  padding: 0 24px;
}

.brand-deliverables-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.brand-deliverable-card {
  padding: 30px 26px;
  border-radius: 18px;
  background: rgba(168, 85, 247, 0.07);
  border: 1px solid rgba(168, 85, 247, 0.28);
  text-align: left;
}

.brand-deliverable-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--grad-2);
}

.brand-deliverable-tag svg {
  width: 15px;
  height: 15px;
}

.brand-deliverable-card:first-child .brand-deliverable-tag {
  color: var(--grad-3);
}

.brand-deliverable-title {
  margin: 16px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: hsl(var(--foreground));
}

.brand-deliverable-desc {
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.8);
}

/* ---------- Process ---------- */
.brand-process {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 90px auto 0;
  padding: 0 24px;
}

.brand-steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-step {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 22px;
}

.brand-step[open] {
  background: rgba(252, 211, 77, 0.07);
  border-color: rgba(252, 211, 77, 0.35);
}

.brand-step-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.brand-step-summary::-webkit-details-marker {
  display: none;
}

.brand-step-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-step-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: hsl(var(--foreground));
}

.brand-step-subtitle {
  margin-top: 2px;
  font-size: 0.78rem;
  color: hsl(var(--hero-sub) / 0.6);
}

.brand-step-desc {
  margin: 0 0 18px;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.75);
}

/* ---------- CTA ---------- */
.brand-cta {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: 660px;
  margin: 90px auto 0;
  padding: 38px 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(252, 211, 77, 0.12), rgba(168, 85, 247, 0.18));
  border: 1px solid rgba(168, 85, 247, 0.3);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.brand-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    115deg,
    rgba(168, 85, 247, 0.10) 0%,
    rgba(168, 85, 247, 0.25) 28%,
    rgba(216, 180, 254, 0.95) 45%,
    rgba(168, 85, 247, 0.30) 58%,
    rgba(168, 85, 247, 0.10) 100%
  );
  background-size: 260% 260%;
  animation: services-card-shine 9s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .brand-cta::before { animation: none; }
}

.brand-cta-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  color: hsl(var(--foreground));
}

.brand-cta-subtitle {
  margin: 14px auto 0;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.85);
}

.brand-cta-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 16px 34px rgba(252, 211, 77, 0.3);
  transition: transform 0.2s ease;
}

.brand-cta-btn:hover {
  transform: translateY(-2px);
}

.brand-cta-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: hsl(var(--hero-sub) / 0.55);
}

/* ---------- Light band: from "Mucho más que un logo" down to the footer ---------- */
.brand-light {
  --light-bg: #ffffff;
  --light-surface: #f6f5fa;
  --light-ink: #14121c;
  --light-ink-soft: rgba(20, 18, 28, 0.68);
  --light-line: rgba(20, 18, 28, 0.10);
  --light-accent: #7c3aed;
  --light-accent-warm: #b45309;

  position: relative;
  z-index: 1;
  background: var(--light-bg);
  /* Corte diagonal: el blanco arranca más alto en el lado derecho */
  margin-top: -60px;
  padding: 70px 0 100px;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
}

/* Espacio extra para que la diagonal no roce las tarjetas del hero */
.branding-page .brand-hero {
  padding-bottom: 160px;
}

/* El área fuera de las esquinas redondeadas del footer queda blanca, no negra */
.branding-page {
  background: #ffffff;
}

@media (max-width: 767px) {
  .brand-light {
    margin-top: -30px;
    padding-top: 40px;
    clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
  }
}

.brand-light .brand-section-heading,
.brand-light .brand-includes-label,
.brand-light .brand-deliverable-title,
.brand-light .brand-cta-heading {
  color: var(--light-ink);
}

.brand-light .brand-section-subtitle,
.brand-light .brand-includes-list li,
.brand-light .brand-deliverable-desc,
.brand-light .brand-cta-subtitle {
  color: var(--light-ink-soft);
}

.brand-light .brand-cta-note {
  color: rgba(20, 18, 28, 0.5);
}

.brand-light .brand-kicker {
  color: var(--light-accent);
}

.brand-light .brand-includes-image {
  border-color: var(--light-line);
}

.brand-light .brand-includes-list-wrap,
.brand-light .brand-result-list-wrap {
  background: var(--light-surface);
  border-color: var(--light-line);
}

/* Carrusel sobre fondo claro */
.brand-light .gp-carousel-arrow {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--light-line);
  color: var(--light-ink);
  box-shadow: 0 6px 18px rgba(20, 18, 28, 0.12);
}

.brand-light .gp-carousel-arrow:hover:not(:disabled) {
  background: rgba(168, 85, 247, 0.14);
  border-color: rgba(168, 85, 247, 0.45);
}

.brand-light .gp-carousel-slide {
  background: var(--light-surface);
  border-color: var(--light-line);
}

.brand-light .gp-carousel-dot {
  background: rgba(20, 18, 28, 0.18);
}

.brand-light .gp-carousel-dot.is-active {
  background: linear-gradient(135deg, var(--grad-2), var(--grad-3));
}

/* Tarjetas de entregables */
.brand-light .brand-deliverable-card {
  background: #faf8ff;
  border-color: rgba(168, 85, 247, 0.24);
}

.brand-light .brand-deliverable-tag {
  color: var(--light-accent);
}

.brand-light .brand-deliverable-card:first-child .brand-deliverable-tag {
  color: var(--light-accent-warm);
}

/* CTA final */
.brand-light .brand-cta {
  background: linear-gradient(160deg, rgba(252, 211, 77, 0.22), rgba(168, 85, 247, 0.16));
  border-color: rgba(168, 85, 247, 0.28);
}

.brand-light .brand-cta::before {
  background: linear-gradient(
    115deg,
    rgba(124, 58, 237, 0.10) 0%,
    rgba(124, 58, 237, 0.30) 28%,
    rgba(124, 58, 237, 0.85) 45%,
    rgba(124, 58, 237, 0.30) 58%,
    rgba(124, 58, 237, 0.10) 100%
  );
  background-size: 260% 260%;
}

@media (max-width: 900px) {
  .brand-pain-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }

  .brand-result-list-wrap .brand-includes-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-deliverables-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .brand-hero-content {
    padding: 40px 20px 0;
  }

  .brand-hero-title {
    font-size: 32px;
    line-height: 1.12;
  }

  .brand-hero-subtitle {
    margin-top: 18px;
  }

  .brand-hero-btn {
    margin-top: 32px;
  }

  .brand-pain-grid {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .brand-includes,
  .brand-process {
    margin-top: 56px;
  }

  .brand-result,
  .brand-deliverables {
    margin-top: 120px;
  }

  .brand-deliverables .brand-section-heading {
    font-size: 30px;
  }

  .brand-deliverables .brand-section-subtitle {
    margin-top: 6px;
    font-size: 1rem;
    line-height: 1.35;
  }

  .brand-result-list-wrap {
    padding: 28px 24px;
  }

  .brand-result-list-wrap .brand-includes-list {
    grid-template-columns: 1fr;
  }

  .brand-includes-list-wrap {
    padding: 28px 24px;
  }

  .brand-includes-list {
    grid-template-columns: 1fr;
  }

  .brand-cta {
    margin-top: 56px;
    padding: 36px 22px;
  }
}

/* === Ads (subpage) === */
.ads-hero-wrapper {
  position: relative;
  overflow: hidden;
}

.ads-hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.ads-hero-bg-darken {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 10, 0.72);
  pointer-events: none;
}

.ads-hero-wrapper .particles-canvas {
  mix-blend-mode: screen;
}

.ads-hero {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

.ads-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 150px auto 0;
  text-align: center;
}

.ads-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grad-3);
}

.ads-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-3);
}

.ads-hero-title {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.15;
  color: hsl(var(--foreground));
}

@media (max-width: 767px) {
  .ads-hero-title {
    font-size: 50px;
    line-height: 1.02;
  }
}

.ads-hero-subtitle {
  margin: 22px auto 0;
  max-width: 56ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.8);
}

.ads-hero-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 16px 34px rgba(252, 211, 77, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease;
  animation: ads-btn-nudge 2s ease-in-out infinite;
}

@keyframes ads-btn-nudge {
  0%, 88%, 100% { transform: translateX(0); }
  94% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .ads-hero-btn {
    animation: none;
  }
}

.ads-hero-content .ads-hero-btn {
  margin-top: 80px;
}

.ads-hero-btn:hover {
  transform: translateY(-2px);
}

.ads-kicker {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--grad-2);
}

.ads-section-heading {
  margin: 14px auto 0;
  max-width: 620px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  color: hsl(var(--foreground));
}

/* ---------- Platforms ---------- */
.ads-platforms {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 24px 110px;
  text-align: center;
}

.ads-platforms-btn {
  margin-top: 48px;
}

.ads-platforms-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ads-platform-card {
  padding: 36px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.ads-platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.ads-platform-icon svg {
  width: 24px;
  height: 24px;
}

.ads-platform-meta .ads-platform-icon,
.ads-platform-google .ads-platform-icon {
  background: none;
  overflow: hidden;
}

.ads-platform-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.ads-platform-title {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: hsl(var(--foreground));
}

.ads-platform-desc {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.8);
}

.ads-platform-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ads-platform-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.85);
}

.ads-platform-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-3);
}

/* ---------- Includes ---------- */
.ads-includes {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 90px 24px;
}

.ads-includes-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.ads-includes-text .ads-kicker,
.ads-includes-text .ads-section-heading {
  text-align: left;
  margin-left: 0;
}

.ads-includes-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.ads-includes-list li {
  position: relative;
  padding-left: 26px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.4;
  color: hsl(var(--hero-sub) / 0.85);
}

.ads-includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
}

.ads-includes-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #1c1c1e;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.ads-includes-note {
  align-self: center;
  padding: 26px 24px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.1), rgba(252, 211, 77, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.25);
  text-align: center;
}

.ads-includes-note-icon {
  width: 26px;
  height: 26px;
  color: var(--grad-2);
}

.ads-includes-note p {
  margin: 12px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.85);
}

/* ---------- Growth chart ---------- */
.ads-growth {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 24px;
  text-align: center;
}

.ads-growth-subtitle {
  margin: 16px auto 0;
  max-width: 50ch;
  font-size: 0.98rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.8);
}

.ads-growth-chart {
  position: relative;
  margin-top: 56px;
  padding: 32px 28px 28px;
  border-radius: 20px;
  background: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), hsl(var(--background));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ads-growth-svg {
  width: 100%;
  height: auto;
  display: block;
}

.ads-growth-grid circle {
  fill: rgba(255, 255, 255, 0.12);
}

.ads-growth-line-flat {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
}

.ads-growth-line-main {
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.45));
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-draw.is-visible .ads-growth-line-flat,
.reveal-draw.is-visible .ads-growth-line-main {
  stroke-dashoffset: 0;
}

.ads-growth-dot {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.4);
  transform-box: fill-box;
  transform-origin: center;
  transition-delay: 1.7s;
}

.reveal-draw.is-visible .ads-growth-dot {
  opacity: 1;
  transform: scale(1);
}

.ads-growth-dot-flat {
  fill: hsl(var(--background));
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 2;
}

.ads-growth-dot-main {
  fill: var(--grad-3);
  stroke: hsl(var(--background));
  stroke-width: 3;
}

.ads-growth-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 1.9s;
}

.reveal-draw.is-visible .ads-growth-label {
  opacity: 1;
  transform: translateY(0);
}

.ads-growth-label-flat {
  bottom: 6%;
  left: 6%;
}

.ads-growth-label-flat .ads-growth-label-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: hsl(var(--hero-sub) / 0.85);
}

.ads-growth-label-flat .ads-growth-label-desc {
  margin-top: 2px;
  font-size: 0.72rem;
  color: hsl(var(--hero-sub) / 0.55);
}

.ads-growth-label-main {
  top: 2%;
  right: 4%;
  text-align: right;
  align-items: flex-end;
}

.ads-growth-label-main .ads-growth-label-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  background-image: linear-gradient(90deg, var(--grad-1), var(--grad-2), var(--grad-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ads-growth-label-main .ads-growth-label-title {
  margin-top: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: hsl(var(--foreground));
}

.ads-growth-label-main .ads-growth-label-desc {
  margin-top: 2px;
  font-size: 0.75rem;
  color: hsl(var(--hero-sub) / 0.65);
}

/* ---------- Process ---------- */
.ads-process {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 24px;
}

.ads-process-row {
  margin-top: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.ads-process-step {
  flex: 1;
  text-align: center;
  max-width: 220px;
}

.ads-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.ads-process-title {
  margin: 16px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: hsl(var(--foreground));
}

.ads-process-desc {
  margin: 6px 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.75);
}

.ads-process-line {
  flex: 0 0 auto;
  width: 80px;
  height: 1.5px;
  margin-top: 22px;
  background: linear-gradient(90deg, rgba(252, 211, 77, 0.5), rgba(168, 85, 247, 0.5));
}

/* ---------- CTA ---------- */
.ads-cta-section {
  position: relative;
  z-index: 1;
  padding: 0 24px 130px;
}

.ads-cta {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 32px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.14), rgba(252, 211, 77, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.3);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.ads-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    115deg,
    rgba(252, 211, 77, 0.10) 0%,
    rgba(252, 211, 77, 0.22) 28%,
    rgba(252, 230, 150, 0.95) 45%,
    rgba(252, 211, 77, 0.30) 58%,
    rgba(252, 211, 77, 0.10) 100%
  );
  background-size: 260% 260%;
  animation: services-card-shine 9s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .ads-cta::before { animation: none; }
}

.ads-cta-heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  color: hsl(var(--foreground));
}

.ads-cta-subtitle {
  margin: 14px auto 0;
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: hsl(var(--hero-sub) / 0.85);
}

.ads-cta-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 16px 34px rgba(168, 85, 247, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.ads-cta-btn:hover {
  transform: translateY(-2px);
}

.ads-cta-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: hsl(var(--hero-sub) / 0.55);
}

@media (max-width: 900px) {
  .ads-platforms-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .ads-includes-inner {
    grid-template-columns: 1fr;
  }

  .ads-includes-text .ads-kicker,
  .ads-includes-text .ads-section-heading {
    text-align: center;
    max-width: none;
  }

  .ads-process-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .ads-process-line {
    width: 1.5px;
    height: 32px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .ads-hero-content {
    margin-top: 56px;
  }

  .ads-process,
  .ads-growth {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Menos aire entre el botón del hero y lo que viene debajo */
  .ads-hero {
    padding-bottom: 48px;
  }

  .ads-platforms {
    padding-top: 36px;
    padding-bottom: 64px;
  }

  /* "¿Qué incluye?" sobre fondo blanco (solo mobile) */
  .ads-includes {
    padding: 64px 20px;
    background: #ffffff;
    border-top: none;
    border-bottom: none;
  }

  .ads-includes .ads-kicker,
  .ads-includes .ads-includes-note-icon {
    color: #7c3aed;
  }

  .ads-includes .ads-section-heading {
    color: #14121c;
    font-size: 19px;
  }

  .ads-includes .ads-includes-list li,
  .ads-includes .ads-includes-note p {
    color: rgba(20, 18, 28, 0.68);
  }

  .ads-includes .ads-includes-note {
    background: linear-gradient(160deg, rgba(168, 85, 247, 0.12), rgba(252, 211, 77, 0.14));
    border-color: rgba(168, 85, 247, 0.22);
  }

  .ads-growth-chart {
    padding: 24px 16px 20px;
  }

  .ads-growth-label {
    position: static;
    margin-top: 16px;
    text-align: center;
    align-items: center;
  }

  .ads-growth-label-main {
    text-align: center;
    align-items: center;
  }

  .ads-includes-list {
    grid-template-columns: 1fr;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .ads-cta-section {
    padding-bottom: 80px;
  }

  .ads-cta {
    padding: 36px 22px;
  }
}

/* === Social Media (subpage) === */
.social-hero-wrapper {
  position: relative;
}

.social-hero {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 110px;
}

.social-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 90px auto 0;
  text-align: center;
}

.social-hero-title {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 62px);
  line-height: 1.05;
  color: hsl(var(--foreground));
}

.social-hero-subtitle {
  margin: 40px auto 0;
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.4;
  color: hsl(var(--hero-sub) / 0.8);
}

.social-hero-content .ads-hero-btn {
  margin-top: 150px;
}

@media (max-width: 767px) {
  .social-hero-title {
    font-size: 34px;
  }

  .social-hero-subtitle {
    margin-top: 20px;
  }

  .social-hero-content .ads-hero-btn {
    margin-top: 75px;
  }
}

/* ---------- Includes override (2-col checklist) ---------- */
.social-includes-list {
  grid-template-columns: 1fr 1fr;
}

/* ---------- Process (accordion) ---------- */
/* ---------- Portafolio de cuentas ---------- */
.social-portfolio {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 24px 20px;
  text-align: center;
}

.social-portfolio-subtitle {
  margin: 16px auto 0;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.8);
}

.social-portfolio-btn {
  margin-top: 48px;
}

/* Marco tipo teléfono para las capturas de perfil */
.social-profile-card {
  position: relative;
  border-radius: 22px;
  background: #000000;
}

.social-profile-card img {
  width: 100%;
  aspect-ratio: 1080 / 1884;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Las 3 cuentas caben en fila en escritorio: ahí no hace falta navegación */
@media (min-width: 768px) {
  .social-portfolio-carousel {
    padding: 0;
  }

  .social-portfolio-carousel .gp-carousel-arrow,
  .social-portfolio-carousel .gp-carousel-dots {
    display: none;
  }
}

/* La captura se corta a media fila: se difumina para que el corte no se note */
.social-profile-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(to bottom, transparent, hsl(var(--background)));
  pointer-events: none;
}

.social-process {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 110px 24px;
  text-align: center;
}

.social-steps {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.social-step {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.social-step-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.social-step-summary::-webkit-details-marker {
  display: none;
}

.social-step-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: hsl(var(--foreground));
}

.social-step-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-step-toggle::before,
.social-step-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--grad-3);
  transform: translate(-50%, -50%);
}

.social-step-toggle::before {
  width: 14px;
  height: 1.6px;
}

.social-step-toggle::after {
  width: 1.6px;
  height: 14px;
  transition: transform 0.25s ease;
}

.social-step[open] .social-step-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.social-step-desc {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.8);
}

@media (max-width: 767px) {
  .social-hero-content {
    margin-top: 56px;
  }

  .social-process {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .social-includes-list {
    grid-template-columns: 1fr;
  }
}

/* === Downloads (subpage) === */
.downloads-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.downloads-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.downloads-hero {
  position: relative;
  z-index: 10;
}

.downloads-hero-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 90px 24px 0;
  text-align: center;
}

.downloads-hero-title {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.15;
  color: hsl(var(--foreground));
}

.downloads-hero-subtitle {
  margin: 20px auto 0;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: hsl(var(--hero-sub) / 0.8);
}

.downloads-grid {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 64px auto 0;
  padding: 0 24px 130px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Entre tablet y desktop 3 columnas quedan muy estrechas */
@media (max-width: 1040px) {
  .downloads-grid {
    max-width: 900px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 28px 32px;
  border-radius: 22px;
  background: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), hsl(var(--background));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.download-card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: hsl(var(--foreground));
  text-transform: uppercase;
}

.download-card-media {
  width: 100%;
  margin: 28px 0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-card-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.download-card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.35);
  transition: transform 0.2s ease;
}

/* Variante ámbar del botón de descarga */
.download-card-btn-amber {
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  box-shadow: 0 12px 28px rgba(252, 211, 77, 0.3);
}

.download-card-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .downloads-hero-content {
    padding-top: 56px;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    padding-bottom: 90px;
  }
}

/* === Scroll reveal === */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .ads-growth-line-flat,
  .ads-growth-line-main,
  .ads-growth-dot,
  .ads-growth-label {
    opacity: 1;
    stroke-dashoffset: 0;
    transform: none;
    transition: none;
  }
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.35);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === Cookie consent banner === */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 620px;
  margin: 0;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(15, 12, 24, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(140%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-text {
  flex: 1;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: hsl(var(--hero-sub) / 0.85);
}

.cookie-banner-text a {
  color: var(--grad-3);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-decline {
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: hsl(var(--hero-sub) / 0.7);
  background: none;
  border: none;
  cursor: pointer;
}

.cookie-banner-decline:hover {
  color: hsl(var(--foreground));
}

.cookie-banner-accept {
  padding: 11px 22px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--grad-3), #f59e0b);
  color: #1c1c1e;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.cookie-banner-accept:hover {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}
