/* =========================================================
   TU CÓDIGO ENERGÉTICO — MINIAPP DE DESCUBRIMIENTO
   ========================================================= */

@import url(
  "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Manrope:wght@400;500;600;700&family=Montserrat:wght@600;700&display=swap"
);

:root {
  --azul-noche: #1A1F5C;
  --violeta: #482A8F;
  --rosa: #E75488;
  --coral: #FF8A7A;
  --dorado: #F6C66E;
  --dorado-oscuro: #B78B34;
  --blanco-luz: #F7F8FF;
  --lavanda: #CED4FF;

  --superficie: #FFFFFF;
  --texto-secundario: #62688C;
  --borde: #DDE1F4;
  --fondo-suave: #F0F2FF;

  --nav-h: 76px;
  --radio: 18px;
  --sombra:
    0 12px 34px rgba(26, 31, 92, 0.08);
}


/* =========================================================
   BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--blanco-luz);
  color: var(--azul-noche);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
}

body {
  min-height: 100vh;
  padding-bottom: calc(var(--nav-h) + 12px);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--azul-noche);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.12;
}

p {
  margin: 0;
  line-height: 1.6;
}

button,
input,
textarea {
  font: inherit;
}

input,
textarea {
  font-size: 16px;
}

button {
  color: inherit;
}

.oculto {
  display: none !important;
}

.pantalla {
  width: min(100%, 620px);
  min-height: calc(100vh - var(--nav-h));
  margin: 0 auto;
  padding: 28px 22px 42px;
}

.eyebrow {
  color: var(--violeta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}


/* =========================================================
   BOTONES
   ========================================================= */

.boton-primario {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 14px 20px;
  color: #FFFFFF;
  background:
    linear-gradient(
      135deg,
      var(--azul-noche),
      var(--violeta)
    );
  border: 0;
  border-radius: 14px;
  box-shadow:
    0 10px 22px rgba(72, 42, 143, 0.18);
  cursor: pointer;
  font-weight: 700;
  text-align: center;
}

.boton-primario:hover {
  transform: translateY(-1px);
}


/* =========================================================
   PANTALLA 1 — INICIO
   ========================================================= */

.inicio-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 26px 30px;
  text-align: center;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(231, 84, 136, 0.11),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(246, 198, 110, 0.16),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #F7F8FF 0%,
      #EEF0FF 58%,
      #FDECF3 100%
    );
  border: 1px solid var(--borde);
  border-radius: 28px;
}

.logo-inicio {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.inicio-hero h1 {
  max-width: 440px;
  margin: 12px auto 14px;
  font-size: 34px;
  font-style: italic;
}

.inicio-hero p {
  max-width: 470px;
  margin: 0 auto;
  color: var(--texto-secundario);
  font-size: 15px;
}

.form-card {
  width: min(100%, 500px);
  margin: 22px auto 0;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--borde);
  border-radius: 20px;
  box-shadow: var(--sombra);
}

.campo-formulario {
  width: 100%;
  margin-bottom: 20px;
}

.campo-formulario:last-of-type {
  margin-bottom: 18px;
}

.campo-formulario label,
.campo-formulario > label {
  display: block;
  margin-bottom: 7px;
  color: var(--azul-noche);
  font-size: 13px;
  font-weight: 700;
}

.campo-formulario input,
.campo-formulario textarea {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  color: var(--azul-noche);
  background: #FFFFFF;
  border: 1.5px solid var(--borde);
  border-radius: 13px;
}

.campo-formulario textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.55;
}

.campo-formulario input:focus,
.campo-formulario textarea:focus {
  outline: 0;
  border-color: var(--violeta);
  box-shadow:
    0 0 0 3px rgba(72, 42, 143, 0.10);
}

.nota-inicio {
  max-width: 470px;
  margin: 14px auto 0;
  color: var(--texto-secundario);
  font-size: 12.5px;
  text-align: center;
}


/* =========================================================
   ENCABEZADOS
   ========================================================= */

.encabezado-seccion {
  max-width: 520px;
  margin: 8px auto 28px;
  text-align: center;
}

.encabezado-seccion h2 {
  margin: 10px 0 12px;
  font-size: 31px;
}

.encabezado-seccion p {
  color: var(--texto-secundario);
  font-size: 14.5px;
}

.pagina-icono {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  object-fit: contain;
}


/* =========================================================
   PANTALLA 2 — 12 ÁREAS
   ========================================================= */

.temas-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tema-card {
  position: relative;
  display: flex;
  min-height: 142px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  color: var(--azul-noche);
  background: #FFFFFF;
  border: 1px solid #E0E3F2;
  border-radius: 18px;
  box-shadow:
    0 6px 18px rgba(26, 31, 92, 0.045);
  cursor: pointer;
  text-align: center;
}

.tema-card:hover {
  border-color: var(--lavanda);
  box-shadow:
    0 10px 24px rgba(72, 42, 143, 0.09);
}

.tema-card-icono {
  display: flex;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
}

.tema-card-icono img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tema-card-titulo {
  max-width: 150px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
}


/* =========================================================
   TRANSICIONES VISUALES
   ========================================================= */

.pantalla-transicion {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transicion-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 500px);
  padding: 38px 28px 30px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(246, 198, 110, 0.24),
      transparent 27%
    ),
    linear-gradient(
      150deg,
      #FFFFFF 0%,
      #F2F3FF 58%,
      #FCECF3 100%
    );
  border: 1px solid var(--borde);
  border-radius: 26px;
  box-shadow: var(--sombra);
}

.transicion-halo {
  display: flex;
  width: 132px;
  height: 132px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background:
    radial-gradient(
      circle,
      rgba(246, 198, 110, 0.25),
      rgba(206, 212, 255, 0.24) 46%,
      transparent 70%
    );
  border-radius: 50%;
}

.transicion-halo img {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.transicion-card h2 {
  max-width: 390px;
  margin: 12px auto;
  font-size: 31px;
}

.transicion-card p {
  max-width: 410px;
  margin: 0 auto;
  color: var(--texto-secundario);
  font-size: 15px;
}

.transicion-progreso {
  overflow: hidden;
  width: 100%;
  height: 4px;
  margin-top: 28px;
  background: rgba(72, 42, 143, 0.10);
  border-radius: 999px;
}

.transicion-progreso span {
  display: block;
  width: 0;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      var(--dorado),
      var(--rosa),
      var(--violeta)
    );
  border-radius: inherit;
}

@keyframes avance-transicion {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/* =========================================================
   PANTALLA 3 — OPCIONES
   ========================================================= */

.mini-opciones {
  display: grid;
  gap: 12px;
}

.mini-opcion {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 17px;
  color: var(--azul-noche);
  background: #FFFFFF;
  border: 1px solid var(--borde);
  border-radius: 15px;
  box-shadow:
    0 5px 14px rgba(26, 31, 92, 0.035);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.mini-opcion:hover {
  background: #F7F8FF;
  border-color: var(--violeta);
}

.opcion-punto {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  margin-top: 5px;
  background: var(--dorado);
  border: 2px solid #FFF4CF;
  border-radius: 50%;
}


/* =========================================================
   PANTALLA 5 — PREPARACIÓN + EMAIL
   ========================================================= */

.preparando-card,
.email-card {
  width: min(100%, 510px);
  margin: 28px auto 0;
  padding: 34px 28px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--borde);
  border-radius: 24px;
  box-shadow: var(--sombra);
}

.codigo-orbita {
  display: flex;
  width: 126px;
  height: 126px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background:
    radial-gradient(
      circle,
      rgba(246, 198, 110, 0.22),
      rgba(206, 212, 255, 0.25) 46%,
      transparent 70%
    );
  border-radius: 50%;
}

.codigo-orbita img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.preparando-card h2,
.email-card h2 {
  max-width: 430px;
  margin: 11px auto 12px;
  font-size: 30px;
}

.preparando-card p {
  color: var(--texto-secundario);
  font-size: 14.5px;
}

.loader {
  width: 44px;
  height: 44px;
  margin: 26px auto 0;
  border: 4px solid #E3E6F4;
  border-top-color: var(--violeta);
  border-radius: 50%;
  animation: girar 0.85s linear infinite;
}

@keyframes girar {
  to {
    transform: rotate(360deg);
  }
}

.email-logo {
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.email-form {
  width: 100%;
  max-width: 480px;
  margin: 22px auto 0;
  text-align: left;
}

.email-form input {
  width: 100%;
}

.form-error {
  margin-top: 10px;
  color: #A33B3B;
  font-size: 13px;
  text-align: center;
}


/* =========================================================
   REPORTE — PANTALLA 6 Y PREVIEWS
   ========================================================= */

.reporte-bienvenida {
  margin-bottom: 24px;
  padding: 30px 22px;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(206, 212, 255, 0.42),
      rgba(247, 248, 255, 0.94)
    );
  border: 1px solid var(--borde);
  border-radius: 22px;
}

.reporte-bienvenida h2 {
  max-width: 460px;
  margin: 10px auto 12px;
  font-size: 29px;
}

.reporte-bienvenida p {
  max-width: 470px;
  margin: 0 auto;
  color: var(--azul-noche);
  font-size: 14.5px;
}

.mapa-visual-card {
  margin-bottom: 26px;
  padding: 28px 18px 24px;
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(56, 184, 232, 0.09),
      transparent 36%
    ),
    radial-gradient(
      circle at 63% 60%,
      rgba(246, 198, 110, 0.12),
      transparent 42%
    ),
    #FFFFFF;
  border: 1px solid var(--borde);
  border-radius: 24px;
  box-shadow:
    0 8px 26px rgba(26, 31, 92, 0.05);
  text-align: center;
}

.mapa-visual-titulo {
  color: var(--dorado-oscuro);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.mapa-visual-card > p {
  margin: 6px 0 22px;
  color: var(--texto-secundario);
  font-size: 13.5px;
}

.mapa-fecha-layout {
  display: grid;
  width: min(100%, 390px);
  height: 318px;
  grid-template-columns:
    repeat(3, 1fr);
  grid-template-rows:
    repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  margin: 0 auto;
}

.mapa-codigo {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapa-circulo {
  display: flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.18),
    0 8px 20px rgba(26, 31, 92, 0.08);
  font-family: "Montserrat", sans-serif;
  font-size: 29px;
  font-weight: 700;
}

.mapa-circulo-bloqueado {
  font-size: 20px;
}

.codigo-alma {
  grid-column: 1;
  grid-row: 1;
}

.codigo-alma .mapa-circulo,
.numero-alma {
  background: #26A9DA;
  border: 4px solid #83DAFA;
}

.codigo-personalidad {
  grid-column: 1;
  grid-row: 3;
}

.codigo-personalidad .mapa-circulo {
  background: #7856D1;
  border: 4px solid #BDAAF2;
}

.codigo-regalo {
  grid-column: 3;
  grid-row: 1;
}

.codigo-regalo .mapa-circulo {
  background: #C6972D;
  border: 4px solid #E7C878;
}

.codigo-camino {
  grid-column: 3;
  grid-row: 3;
}

.codigo-camino .mapa-circulo {
  background: #20276F;
  border: 4px solid #737DBB;
}

.codigo-mision {
  grid-column: 2;
  grid-row: 2;
}

.codigo-mision .mapa-circulo {
  width: 92px;
  height: 92px;
  background: #C6972D;
  border: 4px solid #E7C878;
}

.alma-preview,
.esencia-preview {
  margin-bottom: 22px;
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid var(--borde);
  border-radius: 20px;
}

.numero-cabecera {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.numero-estrella {
  display: flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.numero-titulo {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.numero-vibracion {
  margin-top: 3px;
  color: var(--violeta);
  font-size: 12.5px;
  font-weight: 700;
}

.que-representa-preview {
  margin-bottom: 18px;
  padding: 16px;
  background: #F7F8FF;
  border-left: 3px solid var(--dorado);
  border-radius: 0 14px 14px 0;
}

.que-representa-preview strong {
  display: block;
  margin-bottom: 6px;
  color: var(--violeta);
  font-size: 13px;
}

.que-representa-preview p {
  color: var(--azul-noche);
  font-size: 14.5px;
}

.lista-bloqueos {
  display: grid;
  gap: 9px;
}

.subseccion-bloqueada {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: var(--texto-secundario);
  background: #F7F8FF;
  border: 1px solid #E4E7F4;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
}

.subseccion-candado {
  flex: 0 0 auto;
  font-size: 12px;
}

.esencia-preview {
  background:
    linear-gradient(
      145deg,
      #F3F4FF,
      #FFF9EC
    );
}

.esencia-cabecera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.esencia-cabecera h3 {
  margin-top: 5px;
  font-size: 21px;
}

.candado-grande {
  font-size: 24px;
}

.cta-desbloquear {
  margin-bottom: 12px;
}


/* =========================================================
   MAPA DEL NOMBRE — PREVIEW
   ========================================================= */

.mapa-nombre-circulos {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.mapa-nombre-circulos .mapa-codigo {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapa-nombre-circulos .mapa-circulo {
  width: 66px;
  height: 66px;
  margin: 0 auto;
}

.nombre-1 .mapa-circulo {
  background: #F4C866;
  border: 4px solid #FFE3A4;
}

.nombre-2 .mapa-circulo {
  background: #7895E8;
  border: 4px solid #B8C8FF;
}

.nombre-3 .mapa-circulo {
  background: #4D72D8;
  border: 4px solid #91A9F7;
}

.nombre-4 .mapa-circulo {
  background: #3556B5;
  border: 4px solid #7F99E4;
}


.linaje-preview {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding: 0 20px;
  color: #FFFFFF;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.linaje-preview strong {
  font-size: 18px;
}

.linaje-materno {
  background:
    linear-gradient(
      90deg,
      #E559C8,
      #8057E8
    );
}

.linaje-paterno {
  background:
    linear-gradient(
      90deg,
      #58CBD5,
      #5879E8
    );
}


/* =========================================================
   PREVIEW VIDA HOLÍSTICA / ATLAS
   ========================================================= */

.tema-card-preview {
  cursor: default;
}

.tema-lock {
  position: absolute;
  top: 10px;
  right: 11px;
  font-size: 11px;
}

.preview-desbloquear {
  margin-top: 22px;
}

.preview-atlas {
  width: min(100%, 500px);
  margin: 18px auto 0;
  padding: 30px 24px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--borde);
  border-radius: 22px;
  box-shadow: var(--sombra);
}

.preview-atlas-icono {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.preview-atlas h2 {
  margin: 10px 0 12px;
  font-size: 28px;
}

.preview-atlas > p {
  margin-bottom: 20px;
  color: var(--texto-secundario);
  font-size: 14.5px;
}


/* =========================================================
   PANTALLA 7 — OFERTA
   ========================================================= */

.activar-cabecera {
  max-width: 500px;
  margin: 6px auto 22px;
  text-align: center;
}

.activar-logo {
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.activar-cabecera h1 {
  margin: 10px 0 12px;
  font-size: 34px;
}

.activar-cabecera p {
  color: var(--texto-secundario);
  font-size: 14.5px;
}

.oferta-principal {
  position: relative;
  width: min(100%, 510px);
  margin: 0 auto;
  padding: 28px 24px 24px;
  background: #FFFFFF;
  border: 1.5px solid var(--dorado);
  border-radius: 22px;
  box-shadow: var(--sombra);
}

.oferta-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: var(--azul-noche);
  background: #FFF5D9;
  border: 1px solid #F6D991;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.precio-linea {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.precio-linea strong {
  color: var(--violeta);
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  line-height: 0.9;
}

.precio-linea span {
  padding-bottom: 3px;
  color: var(--texto-secundario);
  font-size: 12.5px;
}

.oferta-destacado {
  margin-top: 9px;
  color: var(--azul-noche);
  font-weight: 700;
}

.oferta-lista {
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}

.oferta-lista li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  color: var(--azul-noche);
  font-size: 14px;
  line-height: 1.45;
}

.oferta-lista li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--dorado-oscuro);
  content: "✓";
  font-weight: 800;
}

.boton-compra {
  margin-top: 4px;
}

.opcion-email {
  display: block;
  width: min(100%, 510px);
  margin: 16px auto 0;
  padding: 12px 16px;
  color: var(--texto-secundario);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12.5px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.opcion-email span {
  margin-left: 5px;
  color: var(--violeta);
  font-weight: 700;
}


/* =========================================================
   NAVEGACIÓN INFERIOR
   ========================================================= */

.bottom-nav {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: var(--nav-h);
  grid-template-columns:
    repeat(5, minmax(0, 1fr));
  align-items: center;
  padding: 7px max(8px, env(safe-area-inset-right)) 8px
    max(8px, env(safe-area-inset-left));
  background: rgba(247, 248, 255, 0.98);
  border-top: 1px solid var(--borde);
  box-shadow:
    0 -7px 20px rgba(26, 31, 92, 0.08);
  backdrop-filter: blur(10px);
}

.nav-boton {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 2px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-icono {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  opacity: 0.68;
}

.nav-icono img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-boton.activo .nav-icono {
  opacity: 1;
}

.nav-boton:active .nav-icono {
  transform: scale(0.95);
}

.candado-nav {
  position: absolute;
  top: 1px;
  right: calc(50% - 27px);
  display: flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow:
    0 2px 6px rgba(26, 31, 92, 0.10);
  font-size: 8px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 680px) {
  .pantalla {
    padding-top: 36px;
  }
}

@media (max-width: 420px) {
  .pantalla {
    padding-right: 16px;
    padding-left: 16px;
  }

  .inicio-hero {
    padding: 28px 18px 24px;
  }

  .inicio-hero h1,
  .activar-cabecera h1 {
    font-size: 30px;
  }

  .form-card,
  .preparando-card,
  .email-card,
  .oferta-principal {
    padding-right: 18px;
    padding-left: 18px;
  }

  .encabezado-seccion h2 {
    font-size: 28px;
  }

  .tema-card {
    min-height: 128px;
  }

  .tema-card-icono {
    width: 68px;
    height: 68px;
  }

  .mapa-fecha-layout {
    width: min(100%, 340px);
    height: 282px;
  }

  .mapa-circulo {
    width: 72px;
    height: 72px;
    font-size: 25px;
  }

  .codigo-regalo .mapa-circulo {
    width: 82px;
    height: 82px;
  }


  .mapa-nombre-circulos .mapa-circulo {
    width: 57px;
    height: 57px;
  }

  .mapa-nombre-circulos {
    gap: 4px;
  }

  .bottom-nav {
    height: 72px;
  }

  .nav-icono {
    width: 42px;
    height: 42px;
  }

  .candado-nav {
    right: calc(50% - 24px);
  }
}

@media (max-width: 350px) {
  .tema-card {
    min-height: 118px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .tema-card-titulo {
    font-size: 12px;
  }

  .mapa-circulo {
    width: 66px;
    height: 66px;
  }

  .codigo-regalo .mapa-circulo {
    width: 76px;
    height: 76px;
  }

  .mapa-nombre-circulos .mapa-circulo {
    width: 50px;
    height: 50px;
  }
}


/* =========================================================
   REPORTE DEMO — ASPECTOS DE FECHA BLOQUEADOS
   ========================================================= */

.aspectos-fecha-demo {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}

.aspecto-fecha-bloqueado {
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid var(--borde);
  border-radius: 20px;
}

.aspecto-bloqueado-cabecera {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.aspecto-circulo-candado {
  display: flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.16),
    0 6px 16px rgba(26, 31, 92, 0.08);
  font-size: 16px;
}

.aspecto-bloqueado-titulo {
  min-width: 0;
}

.aspecto-bloqueado-titulo h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: 0.02em;
}

.aspecto-bloqueado-titulo p {
  margin-top: 3px;
  color: var(--texto-secundario);
  font-size: 12.5px;
  font-style: italic;
}

.aspecto-bloqueado-descripcion {
  margin-bottom: 16px;
  color: var(--texto-secundario);
  font-size: 14px;
}


/* Colores consistentes con el Mapa de Fecha */
.aspecto-personalidad {
  background: #7856D1;
  border: 3px solid #BDAAF2;
}

.aspecto-regalo {
  background: #C6972D;
  border: 3px solid #E7C878;
}

.aspecto-camino {
  background: #20276F;
  border: 3px solid #737DBB;
}

.aspecto-mision {
  background: #C6972D;
  border: 3px solid #E7C878;
}


/* =========================================================
   PERFIL INCOMPLETO
   ========================================================= */

.perfil-incompleto-card {
  width: min(100%, 500px);
  margin: 42px auto 0;
  padding: 34px 28px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--borde);
  border-radius: 24px;
  box-shadow: var(--sombra);
}

.perfil-incompleto-icono {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.perfil-incompleto-card h2 {
  margin: 10px 0 12px;
  font-size: 31px;
}

.perfil-incompleto-card p {
  max-width: 420px;
  margin: 0 auto 20px;
  color: var(--texto-secundario);
  font-size: 14.5px;
}

@media (max-width: 420px) {
  .perfil-incompleto-card {
    margin-top: 26px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
