:root {
  /* BASE */
  --bg-primary: #060816;
  --bg-secondary: #0b1120;
  --bg-tertiary: #111827;
  --bg-soft: #1e1b4b;

  /* BRAND */
  --accent-primary: #38bdf8;
  --accent-secondary: #7c3aed;
  --accent-soft: #22d3ee;

  /* TEXT */
  --text-main: #ffffff;
  --text-soft: rgba(255,255,255,0.72);
  --border-soft: rgba(255,255,255,0.08);

  /* SURFACES */
  --glass: rgba(255,255,255,0.035);
  --glass-strong: rgba(255,255,255,0.06);

  /* SHADOWS */
  --shadow-cyan: rgba(56,189,248,0.18);
  --shadow-purple: rgba(124,58,237,0.18);
}

/* =========================
   NAVBAR · AURA DEV AGENCY
   Moderna · premium · elegante
========================= */

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);

  width: min(92%, 1240px);
  z-index: 1000;

  background: linear-gradient(
  135deg,
  rgba(11,17,32,0.82),
  rgba(30,27,75,0.72)
);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04);

  transition: all 0.3s ease;
}

/* efecto scroll opcional */
.navbar.scrolled {
  background: rgba(6, 8, 22, 0.9);
  border-color: rgba(56,189,248,0.12);
}

/* =========================
   CONTENEDOR
========================= */

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 100%;
  padding: 14px 26px;
}

/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  cursor: pointer;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;

  filter:
    drop-shadow(0 0 12px rgba(56,189,248,0.22))
    drop-shadow(0 0 22px rgba(124,58,237,0.18));

  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  white-space: nowrap;
}

/* =========================
   MENÚ
========================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  border-radius: 999px;

  text-decoration: none;
  color: rgba(255,255,255,0.76);

  font-size: 0.95rem;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* hover */
.nav-menu a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

/* glow underline elegante */
.nav-menu a::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: 2px;

  width: 0%;
  height: 2px;

  transform: translateX(-50%);

  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #7c3aed);

  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 55%;
}

/* =========================
   CTA
========================= */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border-radius: 999px;

  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  color: #ffffff;

  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;

  box-shadow:
    0 8px 20px rgba(56,189,248,0.18),
    0 4px 14px rgba(124,58,237,0.18);

  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);

  box-shadow:
    0 14px 30px rgba(56,189,248,0.24),
    0 8px 18px rgba(124,58,237,0.24);
}

/* =========================
   MENU TOGGLE
========================= */

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  font-size: 1.4rem;
  color: white;

  cursor: pointer;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);

  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.08);
}

/* =========================
   RESPONSIVE · NAVBAR
========================= */

/* TABLET */
@media (max-width: 992px) {

  .navbar {
    width: min(94%, 100%);
    top: 14px;
    border-radius: 18px;
  }

  .nav-container {
    padding: 12px 18px;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .logo span {
    font-size: 0.95rem;
  }

  .nav-menu {
    gap: 4px;
  }

  .nav-menu a {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    width: calc(100% - 20px);
    top: 10px;
    border-radius: 18px;
  }

  .nav-container {
    padding: 12px 14px;
  }

  /* logo más compacto */
  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo span {
    font-size: 0.92rem;
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* mostrar hamburguesa */
  .menu-toggle {
    display: flex;
  }

  /* ocultar CTA desktop */
  .desktop-only {
    display: none;
  }

  /* menú desplegable */
  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    padding: 14px;
    margin: 0 auto;

    width: 100%;

    background: linear-gradient(
      180deg,
      rgba(11,17,32,0.96),
      rgba(30,27,75,0.94)
    );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;

    box-shadow: 0 18px 35px rgba(0,0,0,0.34);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: all 0.3s ease;
  }

  /* estado activo con JS */
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    justify-content: center;

    padding: 14px 18px;
    font-size: 0.96rem;

    border-radius: 14px;
  }

  .nav-menu a::after {
    display: none;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .navbar {
    width: calc(100% - 14px);
  }

  .nav-container {
    padding: 10px 12px;
  }

  .logo span {
    font-size: 0.86rem;
    max-width: 120px;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }

  .nav-menu {
    padding: 12px;
  }

}

/* =========================
   HERO · AURA DEV AGENCY
   Diseño premium · crecimiento · identidad
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  padding: 120px 24px 80px;

  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.12), transparent 40%),
    linear-gradient(
  180deg,
  var(--bg-primary) 0%,
  var(--bg-secondary) 45%,
  var(--bg-soft) 100%
)
}

/* partículas */
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.75;
}

/* glow ambiental */
.hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 65%);
  filter: blur(90px);
  z-index: 1;
}

/* contenedor */
.hero-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

/* =========================
   TEXTO
========================= */

.hero-text {
  max-width: 680px;
}

.hero-text h1 {
  margin: 0 0 24px;

  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;

  color: #ffffff;
}

/* efecto en frase clave si luego usas span */
.hero-text h1 span {
  background: linear-gradient(135deg, #38bdf8, #22d3ee, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  margin: 0 0 34px;

  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.74);

  max-width: 580px;
}

/* =========================
   BOTONES
========================= */

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;

  margin-top: 32px;
}

/* BOTONES BASE */
.hero .btn-primary,
.hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;
  min-width: 220px; /* mismo ancho mínimo */
  height: 58px; /* misma altura */

  border-radius: 999px;

  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* IMPORTANTE */
.hero .btn-primary,
.hero .btn-secondary {
  width: auto;
}

/* principal */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  color: white;

  box-shadow:
    0 12px 30px rgba(56,189,248,0.18),
    0 4px 12px rgba(124,58,237,0.18);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);

  box-shadow:
    0 18px 40px rgba(56,189,248,0.28),
    0 8px 18px rgba(124,58,237,0.22);
}

/* secundario */
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);

  color: #d9f8ff;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.45);
  background: rgba(56,189,248,0.08);
}

/* =========================
   VISUAL
========================= */

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* halo */
.hero-image::before {
  content: "";
  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background:
    radial-gradient(circle, rgba(124,58,237,0.22), transparent 55%),
    radial-gradient(circle, rgba(34,211,238,0.16), transparent 65%);

  filter: blur(28px);
  z-index: 0;
}

/* logo */
.hero-image img {
  position: relative;
  z-index: 2;

  width: min(100%, 420px);
  max-width: 420px;

  animation: floatAura 5s ease-in-out infinite;

  filter:
    drop-shadow(0 0 20px rgba(56,189,248,0.25))
    drop-shadow(0 0 45px rgba(124,58,237,0.18));
}

/* flotación */
@keyframes floatAura {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* =========================
   ANIMACIONES BASE
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE · HERO
========================= */

/* TABLET */
@media (max-width: 992px) {

  .hero {
    padding: 140px 24px 90px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-text p {
    margin: 0 auto 34px;
    max-width: 680px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 320px;
  }

  .hero-image::before {
    width: 300px;
    height: 300px;
  }

  .hero::before {
    width: 420px;
    height: 420px;
    right: 50%;
    top: 22%;
    transform: translateX(50%);
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .hero {
    padding: 125px 18px 70px;
  }

  .hero-container {
    gap: 34px;
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    width: 100%;
    min-width: unset;
    height: 56px;
  }

  .hero-image img {
    max-width: 250px;
  }

  .hero-image::before {
    width: 240px;
    height: 240px;
    filter: blur(24px);
  }

  .hero::before {
    width: 300px;
    height: 300px;
    opacity: 0.7;
  }

  #particles-js {
    opacity: 0.45;
    pointer-events: none;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .hero {
    padding: 115px 14px 60px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    letter-spacing: -0.025em;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-image img {
    max-width: 210px;
  }

  .hero-image::before {
    width: 210px;
    height: 210px;
  }

  .hero .btn-primary,
  .hero .btn-secondary {
    height: 54px;
    font-size: 0.92rem;
    padding: 14px 20px;
  }

}

/* =========================
   TRUST · AURA DEV AGENCY
   Elegante · crecimiento · claridad
========================= */

.trust {
  position: relative;
  padding: 140px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34,211,238,0.06), transparent 35%),
    linear-gradient(
  180deg,
  var(--bg-tertiary) 0%,
  var(--bg-secondary) 55%,
  var(--bg-primary) 100%
)
}

/* línea superior elegante */
.trust::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow suave */
.trust::after {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: 20%;
  right: -120px;

  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 65%);
  filter: blur(90px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.trust-container {
  position: relative;
  z-index: 2;

  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   TÍTULO
========================= */

.trust h2 {
  max-width: 860px;
  margin: 0 auto 75px;

  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;

  color: #ffffff;
}

/* =========================
   GRID
========================= */

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* =========================
   CARD
========================= */

.trust-card {
  position: relative;

  padding: 34px 28px;
  border-radius: 26px;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 100%;

  transition: all 0.35s ease;

  overflow: hidden;
}

/* borde glow interno */
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(124,58,237,0.14),
    rgba(56,189,248,0.14),
    transparent
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* hover */
.trust-card:hover {
  transform: translateY(-10px);

  border-color: rgba(56,189,248,0.18);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.25),
    0 0 35px rgba(56,189,248,0.08);
}

/* =========================
   LOTTIE
========================= */

.lottie-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 210px;

  margin-bottom: 12px;
}

.lottie-wrapper lottie-player {
  width: 200px;
  height: 200px;

  filter:
    drop-shadow(0 0 16px rgba(56,189,248,0.12))
    drop-shadow(0 0 30px rgba(124,58,237,0.08));
}

/* =========================
   TEXTO
========================= */

.trust-text {
  margin-top: 10px;
}

.trust-text h3 {
  margin-bottom: 14px;

  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;

  color: #ffffff;
}

.trust-text p {
  margin: 0 auto;

  max-width: 300px;

  font-size: 0.98rem;
  line-height: 1.75;

  color: rgba(255,255,255,0.72);
}

/* =========================
   RESPONSIVE · TRUST
========================= */

/* TABLET */
@media (max-width: 992px) {

  .trust {
    padding: 115px 22px;
  }

  .trust h2 {
    margin-bottom: 55px;
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-card {
    padding: 30px 24px;
  }

  .lottie-wrapper {
    height: 180px;
  }

  .lottie-wrapper lottie-player {
    width: 170px;
    height: 170px;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .trust {
    padding: 100px 18px;
  }

  .trust h2 {
    margin-bottom: 42px;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.15;
  }

  .trust-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trust-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .lottie-wrapper {
    height: 160px;
    margin-bottom: 8px;
  }

  .lottie-wrapper lottie-player {
    width: 150px;
    height: 150px;
  }

  .trust-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .trust-text p {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.7;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .trust {
    padding: 90px 14px;
  }

  .trust-card {
    padding: 24px 18px;
  }

  .lottie-wrapper {
    height: 145px;
  }

  .lottie-wrapper lottie-player {
    width: 135px;
    height: 135px;
  }

  .trust h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .trust-text h3 {
    font-size: 1.12rem;
  }

  .trust-text p {
    font-size: 0.92rem;
  }

}

/* =========================
   SERVICES · AURA DEV AGENCY
   Etapas · crecimiento · premium
========================= */

.services {
  position: relative;
  padding: 150px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top left, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(34,211,238,0.06), transparent 35%),
    linear-gradient(
  180deg,
  #111827 0%,
  #1e1b4b 45%,
  #0b1120 100%
)
}

/* línea superior */
.services::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow */
.services::after {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  bottom: -120px;
  right: -120px;

  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 65%);
  filter: blur(110px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.services-container {
  position: relative;
  z-index: 2;

  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   HEADERS
========================= */

.services h2 {
  max-width: 920px;
  margin: 0 auto 22px;
  color: #ffffff;

  font-size: clamp(2.2rem, 3.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.services-subtitle {
  max-width: 820px;
  margin: 0 auto 80px;

  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* =========================
   GRID
========================= */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;

  align-items: stretch;
}

/* =========================
   CARD
========================= */

.card {
  position: relative;

  padding: 34px 28px;
  border-radius: 28px;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  text-align: left;

  display: flex;
  flex-direction: column;

  min-height: 100%;

  transition: all 0.35s ease;

  overflow: hidden;
}

/* borde glow */
.card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    145deg,
    rgba(124,58,237,0.14),
    rgba(56,189,248,0.12),
    transparent
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* hover */
.card:hover {
  transform: translateY(-12px);

  border-color: rgba(56,189,248,0.18);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.28),
    0 0 40px rgba(56,189,248,0.08);
}

/* =========================
   DESTACADO
========================= */

.featured {
  transform: scale(1.03);

  background:
    linear-gradient(
      180deg,
      rgba(124,58,237,0.08),
      rgba(56,189,248,0.04)
    ),
    rgba(255,255,255,0.045);

  border-color: rgba(56,189,248,0.18);

  box-shadow:
    0 20px 60px rgba(56,189,248,0.08),
    0 0 45px rgba(124,58,237,0.08);
}

.featured:hover {
  transform: translateY(-14px) scale(1.03);
}

/* =========================
   LABELS
========================= */

.stage-label,
.badge {
  display: inline-flex;
  align-items: center;

  padding: 8px 14px;
  margin-bottom: 22px;

  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.stage-label {
  background: rgba(255,255,255,0.06);
  color: #c8f7ff;
  border: 1px solid rgba(255,255,255,0.06);
}

.badge {
  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  color: white;
}

/* =========================
   TITLES
========================= */

.card h3 {
  margin-bottom: 14px;

  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;

  color: #ffffff;
}

.plan-target {
  margin-bottom: 24px;

  font-size: 0.98rem;
  line-height: 1.75;

  color: rgba(255,255,255,0.72);
}

/* =========================
   PRICE
========================= */

.price {
  margin-bottom: 24px;

  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;

  color: #38bdf8;
}

/* =========================
   LISTA
========================= */

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.card li {
  position: relative;

  padding-left: 28px;
  margin-bottom: 14px;

  font-size: 0.96rem;
  line-height: 1.7;

  color: rgba(255,255,255,0.78);
}

/* check */
.card li::before {
  content: "✦";

  position: absolute;
  left: 0;
  top: 0;

  color: #22d3ee;
  font-size: 0.95rem;
}

/* =========================
   NOTE
========================= */

.growth-note {
  margin-top: auto;
  margin-bottom: 24px;

  padding-top: 18px;

  border-top: 1px solid rgba(255,255,255,0.06);

  font-size: 0.95rem;
  line-height: 1.7;

  color: rgba(255,255,255,0.68);
}

/* =========================
   BOTONES
========================= */

.btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 14px 22px;
  border-radius: 18px;

  font-weight: 700;
  text-decoration: none;

  transition: all 0.3s ease;
}

.btn {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);

  color: #d9f8ff;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(56,189,248,0.25);
  background: rgba(56,189,248,0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  color: white;

  box-shadow:
    0 10px 25px rgba(56,189,248,0.16),
    0 4px 14px rgba(124,58,237,0.16);
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 16px 35px rgba(56,189,248,0.22),
    0 8px 20px rgba(124,58,237,0.22);
}

/* =========================
   CTA EXTRA
========================= */

.services-extra {
  max-width: 760px;
  margin: 75px auto 0;

  text-align: center;
}

.services-extra p {
  margin-bottom: 22px;

  font-size: 1rem;
  line-height: 1.8;

  color: rgba(255,255,255,0.72);
}

.services-extra .btn-secondary {
  display: inline-flex;
  padding: 14px 28px;
}

/* =========================
   RESPONSIVE · SERVICES
========================= */

/* TABLET */
@media (max-width: 1100px) {

  .services {
    padding: 125px 22px;
  }

  .services h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .services-subtitle {
    margin-bottom: 60px;
  }

  .pricing {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* plan destacado ocupa ancho completo */
  .featured {
    grid-column: span 2;
    max-width: 720px;
    margin: 0 auto;
    transform: scale(1);
  }

  .featured:hover {
    transform: translateY(-10px);
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .services {
    padding: 105px 18px;
  }

  .services h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .services-subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 44px;
  }

  .pricing {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .featured {
    grid-column: auto;
    max-width: 100%;
  }

  .card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .plan-target,
  .card li,
  .growth-note {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .stage-label,
  .badge {
    font-size: 0.74rem;
    padding: 7px 12px;
    margin-bottom: 18px;
  }

  .card ul {
    margin-bottom: 24px;
  }

  .card li {
    padding-left: 24px;
    margin-bottom: 12px;
  }

  .btn,
  .btn-primary {
    padding: 14px 18px;
    min-height: 54px;
    border-radius: 16px;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .services {
    padding: 95px 14px;
  }

  .services h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .card {
    padding: 24px 18px;
  }

  .card h3 {
    font-size: 1.35rem;
  }

  .price {
    font-size: 1.8rem;
  }

  .plan-target,
  .card li,
  .growth-note {
    font-size: 0.91rem;
  }

}

/* =========================
   CUSTOM SERVICES · AURA DEV AGENCY
   Soluciones especializadas · expansión · premium
========================= */

.custom-services {
  position: relative;
  padding: 150px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34,211,238,0.06), transparent 35%),
    linear-gradient(
  180deg,
  #0f172a 0%,
  #111827 45%,
  #1e1b4b 100%
)
}

/* línea superior */
.custom-services::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow ambiental */
.custom-services::after {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  top: 25%;
  right: -180px;

  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 65%);
  filter: blur(120px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.custom-container {
  position: relative;
  z-index: 2;

  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   HEADERS
========================= */

.custom-services h2 {
  max-width: 920px;
  margin: 0 auto 22px;

  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;

  color: #ffffff;
}

.custom-services .subtitle {
  max-width: 820px;
  margin: 0 auto 80px;

  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* =========================
   GRID
========================= */

.custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* =========================
   CARD
========================= */

.custom-card {
  position: relative;

  padding: 34px 30px;
  border-radius: 28px;

  text-align: left;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;

  min-height: 100%;

  transition: all 0.35s ease;

  overflow: hidden;
}

/* borde glow */
.custom-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    145deg,
    rgba(124,58,237,0.14),
    rgba(56,189,248,0.12),
    transparent
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* hover */
.custom-card:hover {
  transform: translateY(-10px);

  border-color: rgba(56,189,248,0.18);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.28),
    0 0 40px rgba(56,189,248,0.08);
}

/* =========================
   TAG
========================= */

.custom-tag {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  padding: 8px 14px;
  margin-bottom: 20px;

  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;

  color: #c8f7ff;
}

/* =========================
   TITLES
========================= */

.custom-card h3 {
  margin-bottom: 14px;

  font-size: 1.65rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;

  color: #ffffff;
}

.custom-card p {
  margin-bottom: 24px;

  font-size: 0.98rem;
  line-height: 1.8;

  color: rgba(255,255,255,0.72);
}

/* =========================
   PRICE
========================= */

.custom-card .price {
  display: block;

  margin-bottom: 24px;

  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;

  color: #38bdf8;
}

/* =========================
   BUTTON
========================= */

.custom-card .btn {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 14px 22px;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);

  color: #d9f8ff;

  text-decoration: none;
  font-weight: 700;

  transition: all 0.3s ease;
}

.custom-card .btn:hover {
  transform: translateY(-2px);

  border-color: rgba(56,189,248,0.25);
  background: rgba(56,189,248,0.08);
}

/* =========================
   CTA
========================= */

.custom-cta {
  max-width: 760px;
  margin: 80px auto 0;

  text-align: center;
}

.cta-text {
  margin-bottom: 22px;

  font-size: 1rem;
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* =========================
   RESPONSIVE · CUSTOM SERVICES
========================= */

/* TABLET */
@media (max-width: 992px) {

  .custom-services {
    padding: 125px 22px;
  }

  .custom-services h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .custom-services .subtitle {
    margin-bottom: 60px;
  }

  .custom-grid {
    gap: 24px;
  }

  .custom-card {
    padding: 30px 24px;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .custom-services {
    padding: 105px 18px;
  }

  .custom-services h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .custom-services .subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 44px;
  }

  .custom-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .custom-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .custom-card h3 {
    font-size: 1.45rem;
  }

  .custom-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .custom-card .price {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  .custom-tag {
    font-size: 0.74rem;
    padding: 7px 12px;
    margin-bottom: 16px;
  }

  .custom-card .btn {
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 16px;
  }

  .custom-cta {
    margin-top: 55px;
  }

  .cta-text {
    font-size: 0.96rem;
    line-height: 1.75;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .custom-services {
    padding: 95px 14px;
  }

  .custom-services h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .custom-card {
    padding: 24px 18px;
  }

  .custom-card h3 {
    font-size: 1.28rem;
  }

  .custom-card p {
    font-size: 0.92rem;
  }

  .custom-card .price {
    font-size: 1.55rem;
  }

}

/* =========================
   CONTACT · AURA DEV AGENCY
   Simple · premium · conversión
========================= */

.contact {
  position: relative;
  padding: 150px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34,211,238,0.06), transparent 35%),
    linear-gradient(
  180deg,
  #0f172a 0%,
  #111827 50%,
  #0b1120 100%
)
}

/* línea superior */
.contact::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow sutil */
.contact::after {
  content: "";
  position: absolute;

  width: 480px;
  height: 480px;

  top: 25%;
  right: -160px;

  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 65%);
  filter: blur(110px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.contact-container {
  position: relative;
  z-index: 2;

  max-width: 760px;
  margin: 0 auto;

  text-align: center;
}

/* =========================
   TITLES
========================= */

.contact h2 {
  max-width: 760px;
  margin: 0 auto 18px;

  font-size: clamp(2.2rem, 3.2vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;

  color: #ffffff;
}

.contact-subtitle {
  max-width: 680px;
  margin: 0 auto 55px;

  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* =========================
   FORM
========================= */

form {
  display: flex;
  flex-direction: column;
  gap: 18px;

  padding: 38px;
  border-radius: 30px;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.22);
}

/* =========================
   INPUTS
========================= */

input,
select,
textarea {
  width: 100%;

  padding: 16px 18px;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,0.08);
  outline: none;

  background: rgba(255,255,255,0.04);
  color: #ffffff;

  font-size: 0.98rem;
  font-family: inherit;

  transition: all 0.3s ease;
}

/* placeholder */
input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

/* focus */
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(56,189,248,0.35);

  background: rgba(255,255,255,0.06);

  box-shadow:
    0 0 0 4px rgba(56,189,248,0.08);
}

/* =========================
   SELECT
========================= */

select {
  appearance: none;
  cursor: pointer;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.03));
}

/* opciones */
select option,
optgroup {
  background: #0b1120;
  color: #ffffff;
}

/* =========================
   TEXTAREA
========================= */

textarea {
  min-height: 140px;
  resize: vertical;
}

/* =========================
   BOTÓN
========================= */

#submit-btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 16px 22px;
  margin-top: 8px;

  border: none;
  border-radius: 20px;

  cursor: pointer;

  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  color: #ffffff;

  font-size: 1rem;
  font-weight: 700;

  overflow: hidden;

  transition: all 0.3s ease;

  box-shadow:
    0 12px 30px rgba(56,189,248,0.18),
    0 4px 14px rgba(124,58,237,0.18);
}

#submit-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 38px rgba(56,189,248,0.22),
    0 8px 20px rgba(124,58,237,0.22);
}

/* texto */
.btn-text {
  transition: opacity 0.2s ease;
}

/* loader */
.btn-loader {
  width: 20px;
  height: 20px;

  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  animation: spin 1s linear infinite;

  display: none;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* loading */
#submit-btn.loading .btn-text {
  opacity: 0;
}

#submit-btn.loading .btn-loader {
  display: block;
}

/* =========================
   ÉXITO
========================= */

.mensaje-exito {
  display: none;

  margin-top: 30px;
  padding: 28px;

  border-radius: 24px;

  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.16);

  text-align: center;

  opacity: 0;
  transform: translateY(10px);

  transition: all 0.4s ease;
}

.mensaje-exito.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mensaje-exito h3 {
  margin-bottom: 12px;

  font-size: 1.4rem;
  color: #ffffff;
}

.mensaje-exito p {
  margin: 0;

  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

/* =========================
   HIGHLIGHT JS
========================= */

.contact.active form {
  box-shadow:
    0 0 0 1px rgba(56,189,248,0.18),
    0 0 30px rgba(56,189,248,0.08);
}

/* =========================
   RESPONSIVE · CONTACT
========================= */

/* TABLET */
@media (max-width: 992px) {

  .contact {
    padding: 125px 22px;
  }

  .contact h2 {
    font-size: clamp(2rem, 5vw, 3.3rem);
  }

  .contact-subtitle {
    margin-bottom: 45px;
  }

  form {
    padding: 32px 28px;
    border-radius: 26px;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .contact {
    padding: 105px 18px;
  }

  .contact h2 {
    font-size: clamp(1.9rem, 8vw, 2.9rem);
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .contact-subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 36px;
  }

  form {
    padding: 24px 18px;
    gap: 14px;

    border-radius: 24px;
  }

  input,
  select,
  textarea {
    padding: 15px 16px;

    font-size: 0.95rem;

    border-radius: 16px;
  }

  textarea {
    min-height: 120px;
  }

  #submit-btn {
    min-height: 54px;

    padding: 15px 18px;

    font-size: 0.96rem;

    border-radius: 18px;
  }

  .mensaje-exito {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .mensaje-exito h3 {
    font-size: 1.2rem;
  }

  .mensaje-exito p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .contact {
    padding: 95px 14px;
  }

  .contact h2 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  form {
    padding: 20px 14px;
  }

  input,
  select,
  textarea {
    font-size: 0.92rem;
    padding: 14px 14px;
  }

  #submit-btn {
    font-size: 0.92rem;
  }

}

/* =========================
   PROCESS · AURA DEV AGENCY
   Humano · claro · profesional
========================= */

.process {
  position: relative;
  padding: 150px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top left, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(34,211,238,0.06), transparent 35%),
    linear-gradient(
  180deg,
  #111827 0%,
  #0f172a 55%,
  #0b1120 100%
)
}

/* línea superior */
.process::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow */
.process::after {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  bottom: -180px;
  left: -140px;

  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 65%);
  filter: blur(120px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.process-container {
  position: relative;
  z-index: 2;

  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   HEADERS
========================= */

.process h2 {
  max-width: 900px;
  margin: 0 auto 22px;

  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;

  color: #ffffff;
}

.process .subtitle {
  max-width: 820px;
  margin: 0 auto 85px;

  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* =========================
   TIMELINE
========================= */

.process-steps {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;

  flex-wrap: nowrap;
}

/* línea horizontal */
.timeline-line {
  position: absolute;

  top: 34px;
  left: 6%;
  width: 88%;
  height: 2px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(56,189,248,0.65),
    transparent
  );

  opacity: 0.7;
  z-index: 0;
}

/* =========================
   STEP CARD
========================= */

.step {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 230px;

  padding: 30px 22px;
  border-radius: 26px;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  text-align: left;

  transition: all 0.35s ease;

  overflow: hidden;
}

/* borde glow */
.step::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    145deg,
    rgba(124,58,237,0.14),
    rgba(56,189,248,0.12),
    transparent
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* hover */
.step:hover {
  transform: translateY(-10px);

  border-color: rgba(56,189,248,0.18);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.28),
    0 0 40px rgba(56,189,248,0.08);
}

/* =========================
   DOT
========================= */

.dot {
  width: 16px;
  height: 16px;

  border-radius: 50%;

  background: linear-gradient(135deg, #7c3aed, #38bdf8);

  margin-bottom: 18px;

  box-shadow:
    0 0 18px rgba(56,189,248,0.35),
    0 0 28px rgba(124,58,237,0.18);
}

/* =========================
   STEP NUMBER
========================= */

.step span {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  color: #38bdf8;
}

/* =========================
   TITLES
========================= */

.step h3 {
  margin-bottom: 14px;

  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;

  color: #ffffff;
}

/* =========================
   TEXT
========================= */

.step p {
  margin: 0;

  font-size: 0.95rem;
  line-height: 1.8;

  color: rgba(255,255,255,0.72);
}

/* =========================
   RESPONSIVE · PROCESS
========================= */

/* TABLET */
@media (max-width: 1200px) {

  .process {
    padding: 125px 22px;
  }

  .process h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .process .subtitle {
    margin-bottom: 60px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 24px;
  }

  .timeline-line {
    display: none;
  }

  .step {
    max-width: calc(50% - 12px);
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .process {
    padding: 105px 18px;
  }

  .process h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .process .subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 42px;
  }

  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .step {
    max-width: 100%;
    width: 100%;

    padding: 26px 20px;

    border-radius: 22px;
  }

  .dot {
    width: 14px;
    height: 14px;

    margin-bottom: 14px;
  }

  .step span {
    font-size: 0.76rem;
    margin-bottom: 10px;
  }

  .step h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
  }

  .step p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .process {
    padding: 95px 14px;
  }

  .process h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .step {
    padding: 22px 18px;
  }

  .step h3 {
    font-size: 1.08rem;
  }

  .step p {
    font-size: 0.91rem;
  }

}


/* =========================
   PORTFOLIO · AURA DEV AGENCY
   Elegante · confianza · crecimiento
========================= */

.portfolio {
  position: relative;
  padding: 150px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34,211,238,0.06), transparent 35%),
    linear-gradient(
  180deg,
  #0b1120 0%,
  #111827 50%,
  #1e1b4b 100%
)
}

/* línea superior */
.portfolio::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow */
.portfolio::after {
  content: "";
  position: absolute;

  width: 500px;
  height: 500px;

  top: 20%;
  right: -160px;

  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 65%);
  filter: blur(120px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.portfolio-container {
  position: relative;
  z-index: 2;

  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   HEADERS
========================= */

.portfolio h2 {
  max-width: 920px;
  margin: 0 auto 22px;

  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;

  color: #ffffff;
}

.portfolio .subtitle {
  max-width: 820px;
  margin: 0 auto 80px;

  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* =========================
   GRID
========================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */

.project {
  position: relative;

  padding: 24px;
  border-radius: 28px;

  text-align: left;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.35s ease;

  overflow: hidden;
}

/* borde glow */
.project::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    145deg,
    rgba(124,58,237,0.14),
    rgba(56,189,248,0.12),
    transparent
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* hover */
.project:hover {
  transform: translateY(-10px);

  border-color: rgba(56,189,248,0.18);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.28),
    0 0 40px rgba(56,189,248,0.08);
}

/* =========================
   IMAGE
========================= */

.project img {
  width: 100%;
  height: 160px;
  object-fit: contain;

  border-radius: 20px;

  margin-bottom: 20px;

  transition: transform 0.4s ease;
}

.project:hover img {
  transform: scale(1.03);
}



/* =========================
   CATEGORY
========================= */

.project-category {
  display: inline-flex;
  align-items: center;

  padding: 8px 14px;
  margin-bottom: 16px;

  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;

  color: #c8f7ff;
}

/* =========================
   TITLES
========================= */

.project h3 {
  margin-bottom: 14px;

  font-size: 1.6rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;

  color: #ffffff;
}

/* =========================
   TEXT
========================= */

.project p {
  margin-bottom: 22px;

  font-size: 0.98rem;
  line-height: 1.8;

  color: rgba(255,255,255,0.72);
}

/* =========================
   LINK
========================= */

.project a {
  display: inline-flex;
  align-items: center;

  font-size: 0.96rem;
  font-weight: 700;

  color: #38bdf8;
  text-decoration: none;

  transition: all 0.3s ease;
}

.project a:hover {
  color: #22d3ee;
  transform: translateX(4px);
}

/* =========================
   CTA FINAL · AURA DEV AGENCY
   Emocional · premium · cierre estratégico
========================= */

.cta-final {
  position: relative;
  padding: 170px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34,211,238,0.08), transparent 35%),
    linear-gradient(
      180deg,
      #111827 0%,
      #1e1b4b 50%,
      #0b1120 100%
    );

  text-align: center;
  color: #ffffff;
}

/* línea superior */
.cta-final::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow central */
.cta-final::after {
  content: "";
  position: absolute;

  width: 620px;
  height: 620px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(circle, rgba(56,189,248,0.12), transparent 55%),
    radial-gradient(circle, rgba(124,58,237,0.08), transparent 65%);

  filter: blur(110px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.cta-container {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   TITULO
========================= */

.cta-final h2 {
  max-width: 860px;
  margin: 0 auto 24px;

  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;

  color: #ffffff;
}

/* =========================
   TEXTO
========================= */

.cta-final p {
  max-width: 760px;
  margin: 0 auto 38px;

  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.9;

  color: rgba(255,255,255,0.74);
}

/* =========================
   BOTÓN
========================= */

.cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;
  border-radius: 999px;

  background: linear-gradient(135deg, #7c3aed, #38bdf8);
  color: #ffffff;

  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;

  transition: all 0.35s ease;

  box-shadow:
    0 14px 34px rgba(56,189,248,0.18),
    0 6px 18px rgba(124,58,237,0.18);
}

/* hover */
.cta-main:hover {
  transform: translateY(-4px) scale(1.03);

  box-shadow:
    0 22px 45px rgba(56,189,248,0.24),
    0 10px 24px rgba(124,58,237,0.24);
}

/* =========================
   NOTA
========================= */

.cta-note {
  display: block;

  margin-top: 18px;

  font-size: 0.92rem;
  line-height: 1.7;

  color: rgba(255,255,255,0.55);
}

/* =========================
   RESPONSIVE · PORTFOLIO
========================= */

/* TABLET */
@media (max-width: 1200px) {

  .portfolio {
    padding: 125px 22px;
  }

  .portfolio h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

  .portfolio .subtitle {
    margin-bottom: 60px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .portfolio {
    padding: 105px 18px;
  }

  .portfolio h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  .portfolio .subtitle {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 42px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project {
    padding: 20px;
    border-radius: 24px;
  }

  .project img {
    height: 130px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .project h3 {
    font-size: 1.2rem;
  }

  .project p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .project a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .portfolio {
    padding: 95px 14px;
  }

  .portfolio h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .project {
    padding: 18px;
  }

  .project img {
    height: 115px;
  }

  .project h3 {
    font-size: 1.08rem;
  }

  .project p {
    font-size: 0.91rem;
  }

}

/* =========================
   RESPONSIVE · PORTFOLIO DETAILS
========================= */

@media (max-width: 768px) {

  .project-category {
    font-size: 0.72rem;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  .project h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .project p {
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .project a {
    font-size: 0.92rem;
  }

}


@media (max-width: 480px) {

  .project-category {
    font-size: 0.68rem;
    padding: 6px 10px;
  }

  .project h3 {
    font-size: 1.08rem;
  }

  .project p {
    font-size: 0.91rem;
  }

}


/* =========================
   RESPONSIVE · CTA FINAL
========================= */

/* TABLET */
@media (max-width: 992px) {

  .cta-final {
    padding: 140px 22px;
  }

  .cta-final h2 {
    font-size: clamp(2.2rem, 6vw, 4rem);
  }

  .cta-final p {
    margin-bottom: 32px;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .cta-final {
    padding: 110px 18px;
  }

  .cta-final h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .cta-final p {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .cta-main {
    width: 100%;

    min-height: 56px;

    padding: 15px 20px;

    font-size: 0.96rem;
  }

  .cta-note {
    margin-top: 14px;
    font-size: 0.88rem;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .cta-final {
    padding: 95px 14px;
  }

  .cta-final h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .cta-final p {
    font-size: 0.93rem;
  }

  .cta-main {
    min-height: 54px;
    font-size: 0.92rem;
  }

}

/* =========================
   FOOTER · AURA DEV AGENCY
   Moderno · limpio · profesional
========================= */

.footer {
  position: relative;
  padding: 100px 24px 35px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34,211,238,0.05), transparent 35%),
    linear-gradient(
  180deg,
  #0b1120 0%,
  #111827 50%,
  #060816 100%
)
}

/* línea superior */
.footer::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow sutil */
.footer::after {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: 10%;
  right: -140px;

  background: radial-gradient(circle, rgba(56,189,248,0.06), transparent 65%);
  filter: blur(100px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.footer-container {
  position: relative;
  z-index: 2;

  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;

  align-items: start;
}

/* =========================
   BRAND
========================= */

.footer-brand img {
  width: 58px;
  margin-bottom: 18px;

  filter:
    drop-shadow(0 0 14px rgba(56,189,248,0.18))
    drop-shadow(0 0 25px rgba(124,58,237,0.12));
}

.footer-brand h3 {
  margin-bottom: 14px;

  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.02em;

  color: #ffffff;
}

.footer-brand p {
  max-width: 340px;
  margin-bottom: 24px;

  font-size: 0.98rem;
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* =========================
   CONTACTO
========================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  width: fit-content;

  color: rgba(255,255,255,0.76);
  text-decoration: none;

  font-size: 0.95rem;

  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-contact i {
  color: #38bdf8;
}

/* =========================
   LINKS
========================= */

.footer-links h4 {
  margin-bottom: 18px;

  font-size: 1.05rem;
  font-weight: 700;

  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  margin-bottom: 12px;

  color: rgba(255,255,255,0.72);
  text-decoration: none;

  font-size: 0.96rem;

  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

/* =========================
   TEXTO MINI
========================= */

.footer-mini-text {
  max-width: 320px;
  margin-bottom: 20px;

  font-size: 0.95rem;
  line-height: 1.75;

  color: rgba(255,255,255,0.68);
}

/* =========================
   REDES
========================= */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  border-radius: 16px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  color: #ffffff;
  text-decoration: none;

  font-size: 1.1rem;

  transition: all 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);

  color: #38bdf8;

  border-color: rgba(56,189,248,0.18);

  background: rgba(56,189,248,0.08);

  box-shadow:
    0 12px 24px rgba(56,189,248,0.08);
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  position: relative;
  z-index: 2;

  max-width: 1240px;
  margin: 55px auto 0;
  padding-top: 22px;

  border-top: 1px solid rgba(255,255,255,0.06);

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  font-size: 0.9rem;
  line-height: 1.7;

  color: rgba(255,255,255,0.5);
}

/* =========================
   RESPONSIVE · FOOTER
========================= */

/* TABLET */
@media (max-width: 1100px) {

  .footer {
    padding: 90px 22px 32px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  /* tercera columna ocupa ancho completo */
  .footer-container > *:last-child {
    grid-column: span 2;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .footer {
    padding: 80px 18px 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 34px;

    text-align: center;
  }

  .footer-container > *:last-child {
    grid-column: auto;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand img {
    width: 52px;
    margin-bottom: 14px;
  }

  .footer-brand h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .footer-brand p,
  .footer-mini-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;

    font-size: 0.94rem;
    line-height: 1.75;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact a {
    justify-content: center;
    width: auto;
    font-size: 0.92rem;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links h4 {
    margin-bottom: 14px;
  }

  .footer-links a {
    margin-bottom: 10px;
    font-size: 0.93rem;
  }

  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-socials a {
    width: 44px;
    height: 44px;

    border-radius: 14px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
  }

  .footer-bottom p {
    font-size: 0.84rem;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .footer {
    padding: 70px 14px 24px;
  }

  .footer-brand h3 {
    font-size: 1.2rem;
  }

  .footer-brand p,
  .footer-mini-text,
  .footer-contact a,
  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-socials {
    gap: 10px;
  }

  .footer-socials a {
    width: 42px;
    height: 42px;

    font-size: 1rem;
  }

}

/* =========================
   ABOUT · AURA DEV AGENCY
   Filosofía · identidad · premium
========================= */

.about {
  position: relative;
  padding: 150px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34,211,238,0.06), transparent 35%),
    linear-gradient(
  180deg,
  var(--bg-secondary) 0%,
  var(--bg-tertiary) 55%,
  var(--bg-primary) 100%
)
}

/* línea superior */
.about::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow */
.about::after {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  top: 20%;
  right: -180px;

  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 65%);
  filter: blur(120px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.about-container {
  position: relative;
  z-index: 2;

  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;

  align-items: center;
}

/* =========================
   LABEL
========================= */

.about-label {
  display: inline-flex;
  align-items: center;

  padding: 8px 14px;
  margin-bottom: 22px;

  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;

  color: #c8f7ff;
}

/* =========================
   TEXTOS
========================= */

.about-content h2 {
  margin-bottom: 24px;

  font-size: clamp(2.2rem, 3.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;

  color: #ffffff;
}

.about-main-text {
  font-size: 1.08rem !important;
  color: rgba(255,255,255,0.82) !important;
}

.about-content p {
  margin-bottom: 20px;

  font-size: 1rem;
  line-height: 1.9;

  color: rgba(255,255,255,0.72);
}

/* =========================
   VALUES
========================= */

.about-values {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =========================
   CARD
========================= */

.value-card {
  position: relative;

  padding: 28px 24px;
  border-radius: 24px;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.35s ease;

  overflow: hidden;
}

/* glow border */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    145deg,
    rgba(124,58,237,0.14),
    rgba(56,189,248,0.12),
    transparent
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* hover */
.value-card:hover {
  transform: translateY(-8px);

  border-color: rgba(56,189,248,0.18);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.25),
    0 0 35px rgba(56,189,248,0.08);
}

/* =========================
   NUMBER
========================= */

.value-number {
  margin-bottom: 14px;

  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  color: #38bdf8;
}

/* =========================
   TITLES
========================= */

.value-card h3 {
  margin-bottom: 12px;

  font-size: 1.25rem;
  line-height: 1.2;

  color: #ffffff;
}

/* =========================
   TEXT
========================= */

.value-card p {
  margin: 0;

  font-size: 0.95rem;
  line-height: 1.8;

  color: rgba(255,255,255,0.72);
}

/* =========================
   RESPONSIVE · ABOUT
========================= */

/* TABLET */
@media (max-width: 992px) {

  .about {
    padding: 125px 22px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    text-align: center;
  }

  .about-label {
    margin-left: auto;
    margin-right: auto;
  }

  .about-content h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
  }

  .about-content p {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-values {
    max-width: 820px;
    margin: 0 auto;
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .about {
    padding: 105px 18px;
  }

  .about-container {
    gap: 38px;
  }

  .about-label {
    font-size: 0.74rem;
    padding: 7px 12px;
    margin-bottom: 18px;
  }

  .about-content h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .about-main-text {
    font-size: 1rem !important;
  }

  .about-content p {
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-values {
    gap: 18px;
  }

  .value-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .value-number {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }

  .value-card h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
  }

  .value-card p {
    font-size: 0.93rem;
    line-height: 1.7;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .about {
    padding: 95px 14px;
  }

  .about-content h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .about-content p,
  .about-main-text {
    font-size: 0.92rem !important;
  }

  .value-card {
    padding: 20px 16px;
  }

  .value-card h3 {
    font-size: 1.02rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }

}

/* =========================
   FAQ · AURA DEV AGENCY
   Humano · claro · premium
========================= */

.faq {
  position: relative;
  padding: 150px 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at top right, rgba(124,58,237,0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34,211,238,0.06), transparent 35%),
    linear-gradient(
  180deg,
  #1e1b4b 0%,
  #111827 55%,
  #0b1120 100%
)
}

/* línea superior */
.faq::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: min(82%, 1200px);
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}

/* glow */
.faq::after {
  content: "";
  position: absolute;

  width: 520px;
  height: 520px;

  top: 15%;
  right: -180px;

  background: radial-gradient(circle, rgba(56,189,248,0.08), transparent 65%);
  filter: blur(120px);

  pointer-events: none;
}

/* =========================
   CONTENEDOR
========================= */

.faq-container {
  position: relative;
  z-index: 2;

  max-width: 980px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

/* label */
.faq-label {
  display: inline-flex;
  align-items: center;

  padding: 8px 14px;
  margin-bottom: 22px;

  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;

  color: #c8f7ff;
}

/* title */
.faq-header h2 {
  max-width: 860px;
  margin: 0 auto 20px;

  font-size: clamp(2.2rem, 3.4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;

  color: #ffffff;
}

/* subtitle */
.faq-header p {
  max-width: 760px;
  margin: 0 auto;

  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* =========================
   LISTA
========================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================
   ITEM
========================= */

.faq-item {
  position: relative;

  border-radius: 24px;

  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  overflow: hidden;

  transition: all 0.35s ease;
}

/* glow border */
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(
    145deg,
    rgba(124,58,237,0.14),
    rgba(56,189,248,0.12),
    transparent
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
          mask-composite: exclude;

  pointer-events: none;
}

/* hover */
.faq-item:hover {
  border-color: rgba(56,189,248,0.18);

  box-shadow:
    0 16px 40px rgba(0,0,0,0.22),
    0 0 30px rgba(56,189,248,0.06);
}

/* =========================
   QUESTION
========================= */

.faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 26px;

  background: transparent;
  border: none;

  cursor: pointer;

  color: #ffffff;

  text-align: left;

  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.6;

  font-family: inherit;
}

/* símbolo */
.faq-question span {
  flex-shrink: 0;

  margin-left: 18px;

  font-size: 1.4rem;
  font-weight: 400;

  color: #38bdf8;

  transition: transform 0.3s ease;
}

/* activo */
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* =========================
   ANSWER
========================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-answer p {
  padding: 0 26px 24px;

  margin: 0;

  font-size: 0.97rem;
  line-height: 1.85;

  color: rgba(255,255,255,0.72);
}

/* abierto */
.faq-item.active .faq-answer {
  max-height: 300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* =========================
   RESPONSIVE · FAQ
========================= */

/* TABLET */
@media (max-width: 992px) {

  .faq {
    padding: 125px 22px;
  }

  .faq-header {
    margin-bottom: 55px;
  }

  .faq-header h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
  }

}


/* MOBILE */
@media (max-width: 768px) {

  .faq {
    padding: 105px 18px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-label {
    font-size: 0.74rem;
    padding: 7px 12px;
    margin-bottom: 18px;
  }

  .faq-header h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .faq-header p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-item {
    border-radius: 20px;
  }

  .faq-question {
    padding: 20px 18px;

    font-size: 0.95rem;
    line-height: 1.55;
  }

  .faq-question span {
    margin-left: 14px;

    font-size: 1.2rem;
  }

  .faq-answer p {
    padding: 0 18px 20px;

    font-size: 0.93rem;
    line-height: 1.75;
  }

  .faq-item.active .faq-answer {
    max-height: 420px;
  }

}


/* SMALL MOBILE */
@media (max-width: 480px) {

  .faq {
    padding: 95px 14px;
  }

  .faq-header h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .faq-header p {
    font-size: 0.92rem;
  }

  .faq-question {
    padding: 18px 16px;

    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 16px 18px;

    font-size: 0.9rem;
  }

}