/* ============================================================
   AKDMY · detalles del rediseño llevados al sitio

   Solo lo pedido: barra de desplazamiento, titulares con
   degradado, la sección de contacto y las preguntas frecuentes.
   Nada de esto toca el resto de la maquetación del clon.

   Las secciones del sitio ya tienen fondo oscuro propio
   (#0c0c1d / #181839), así que estos bloques van transparentes y
   heredan ese fondo: no llevan las auroras ni la constelación de
   clases.html.
   ============================================================ */

:root {
  --ak-violeta:  #5857d5;
  --ak-violeta2: #7d7cff;
  --ak-magenta:  #d203ab;
  --ak-magenta2: #ff4fd8;
  --ak-ambar:    #ffc000;
  --ak-cristal:  rgba(255, 255, 255, .045);
  --ak-cristal2: rgba(255, 255, 255, .075);
  --ak-borde:    rgba(255, 255, 255, .12);
  --ak-suave:    rgba(255, 255, 255, .72);
  --ak-tenue:    rgba(255, 255, 255, .48);
  --ak-ease:     cubic-bezier(.22, 1, .36, 1);
  --ak-tipo:     Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ============================================================
   1 · Barra de desplazamiento — la misma del rediseño
   ============================================================ */

/* Sin "scrollbar-width": en Chrome la propiedad estándar tiene prioridad
   y anularía el pulgar en degradado de ::-webkit-scrollbar. Firefox se
   queda con su barra propia, que es lo que hace también el rediseño. */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #07070f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--ak-violeta), var(--ak-magenta));
  border-radius: 99px;
  border: 3px solid #07070f;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--ak-violeta2), var(--ak-magenta2));
}
::-webkit-scrollbar-corner { background: #07070f; }

/* ============================================================
   2 · Titulares con degradado
   El tramo destacado lo envuelve sitio.js en .ak-grad. El clon
   deja algunos titulares con el relleno de texto transparente;
   se devuelve al color propio y solo el tramo destacado queda
   transparente, para que asome el degradado.
   ============================================================ */

main h1, main h2, section h1, section h2 { -webkit-text-fill-color: currentColor; }

.ak-grad {
  background: linear-gradient(105deg, #fff 8%, var(--ak-violeta2) 42%,
              var(--ak-magenta2) 72%, var(--ak-ambar));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: akBrilloTitulo 7s linear infinite;
}
@keyframes akBrilloTitulo { to { background-position: 220% center; } }

.ak-neon { text-shadow: 0 0 26px rgba(125, 124, 255, .55), 0 0 68px rgba(210, 3, 171, .35); }

@media (prefers-reduced-motion: reduce) { .ak-grad { animation: none; } }

/* ============================================================
   3 · Contacto — misma estructura y mismo cristal del rediseño,
   sobre el fondo que ya trae la página.
   ============================================================ */

.ak-seccion {
  padding: clamp(3.4rem, 6vw, 5.6rem) 0;
  font-family: var(--ak-tipo);
  color: #fff;
  /* Mismo tono que el resto de secciones del sitio: los bloques nuevos
     no traen fondo propio y sin esto quedarían texto blanco sobre blanco. */
  background: #0c0c1d;
}
.ak-shell { width: min(1184px, 92vw); margin-inline: auto; }

.ak-rejilla {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .ak-rejilla { grid-template-columns: 1fr; } }

/* --- cristal, igual que en el rediseño --- */
.ak-cristal {
  position: relative;
  background: var(--ak-cristal);
  border: 1px solid var(--ak-borde);
  border-radius: 30px;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, .9), inset 0 1px 0 rgba(255, 255, 255, .09);
  overflow: hidden;
}
/* El filo de color que se enciende al pasar por encima. */
.ak-cristal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(125, 124, 255, .75), transparent 38%,
              transparent 62%, rgba(255, 79, 216, .6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.ak-cristal:hover::before { opacity: 1; }

.ak-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 17px 7px 13px;
  border-radius: 99px;
  background: var(--ak-cristal);
  border: 1px solid var(--ak-borde);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ak-suave);
}
.ak-punto {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ak-magenta2);
  box-shadow: 0 0 12px var(--ak-magenta2);
  animation: akLatir 2s infinite;
}
@keyframes akLatir { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.75); } }

.ak-titulo {
  font-family: var(--ak-tipo);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
  margin: 18px 0 0;
}
.ak-lead {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: var(--ak-suave);
  max-width: 62ch;
  margin: 18px 0 0;
  line-height: 1.6;
}

.ak-tarjetas { display: grid; gap: 14px; margin-top: 34px; }
.ak-tarjeta { padding: 22px; border-radius: 20px; }
.ak-tarjeta h3 {
  font-family: var(--ak-tipo);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.ak-tarjeta p { margin: 6px 0 0; font-size: .95rem; color: var(--ak-suave); line-height: 1.55; }

/* --- formulario --- */
.ak-form { padding: clamp(26px, 3.4vw, 40px); border-radius: 42px; }
.ak-form h3 {
  font-family: var(--ak-tipo);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px;
}
.ak-campo { margin-bottom: 17px; }
.ak-campo label {
  display: block;
  font-size: .8rem;
  color: var(--ak-tenue);
  margin-bottom: 7px;
  letter-spacing: .05em;
}
.ak-campo input, .ak-campo textarea, .ak-campo select {
  width: 100%;
  padding: 14px 17px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--ak-borde);
  border-radius: 12px;
  color: #fff;
  font-family: var(--ak-tipo);
  font-size: .96rem;
  transition: border-color .28s, box-shadow .28s, background-color .28s;
}
.ak-campo select option { color: #0c0c1d; }
.ak-campo input::placeholder, .ak-campo textarea::placeholder { color: rgba(255, 255, 255, .3); }
.ak-campo input:focus, .ak-campo textarea:focus, .ak-campo select:focus {
  outline: 0;
  border-color: rgba(125, 124, 255, .75);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 0 0 4px rgba(88, 87, 213, .16);
}
.ak-campo textarea { min-height: 128px; resize: vertical; }
.ak-nota { font-size: .78rem; color: var(--ak-tenue); margin: 14px 0 0; }

/* --- botones --- */
.ak-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 0;
  border-radius: 99px;
  font-family: var(--ak-tipo);
  font-weight: 600;
  font-size: .97rem;
  letter-spacing: .01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s var(--ak-ease), box-shadow .3s, background-color .3s, border-color .3s;
}
.ak-btn:hover { transform: translateY(-3px); }
.ak-btn--primario {
  color: #fff;
  background: linear-gradient(115deg, var(--ak-violeta), var(--ak-magenta));
  box-shadow: 0 10px 34px -8px rgba(210, 3, 171, .65), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.ak-btn--primario:hover { color: #fff; box-shadow: 0 16px 42px -10px rgba(210, 3, 171, .8); }
.ak-btn--fantasma {
  color: #fff;
  background: var(--ak-cristal);
  border: 1px solid var(--ak-borde);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ak-btn--fantasma:hover {
  color: #fff;
  background: var(--ak-cristal2);
  border-color: rgba(125, 124, 255, .55);
  box-shadow: 0 0 26px -6px rgba(125, 124, 255, .5);
}

/* --- banda final --- */
.ak-banda { padding: clamp(48px, 6vw, 78px); text-align: center; border-radius: 42px; }
.ak-banda h2 {
  font-family: var(--ak-tipo);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 18px;
}
.ak-banda .ak-lead { margin-inline: auto; }
.ak-fila { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ============================================================
   4 · Preguntas frecuentes
   ============================================================ */

.ak-faq { max-width: 880px; margin-inline: auto; }
.ak-faq__cab { text-align: center; margin-bottom: 2.6rem; }
.ak-faq__cab h2 {
  font-family: var(--ak-tipo);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: #fff;
  margin: 16px 0 0;
}

.ak-pregunta {
  border-radius: 20px;
  margin-bottom: 12px;
  transition: border-color .3s, box-shadow .3s;
}
.ak-pregunta[open] {
  border-color: rgba(125, 124, 255, .45);
  box-shadow: 0 24px 60px -34px rgba(125, 124, 255, .7);
}
.ak-pregunta summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--ak-tipo);
  font-size: 1.03rem;
  font-weight: 600;
  color: #fff;
  list-style: none;
  transition: color .25s;
}
.ak-pregunta summary::-webkit-details-marker { display: none; }
.ak-pregunta summary::after {
  content: "";
  margin-left: auto;
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--ak-violeta2);
  border-bottom: 2px solid var(--ak-violeta2);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s var(--ak-ease);
}
.ak-pregunta[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.ak-pregunta summary:hover { color: var(--ak-violeta2); }
.ak-pregunta__cuerpo {
  padding: 0 24px 22px;
  color: var(--ak-suave);
  font-size: .96rem;
  line-height: 1.65;
}
.ak-pregunta__cuerpo p { margin: 0; }
