/* ===== Ora Telecom – UI roxa responsiva (para index2.html) ===== */

/* ----------------- Tokens / Espaçamentos ----------------- */
:root{
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;

  --card-radius: 15px;
  --purple-500: #7c3aed;
  --purple-600: #6d28d9;
  --text-on-dark: #f3eaff;
}

/* ----------------- Base ----------------- */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  color: var(--text-on-dark);
  background:
    radial-gradient(1200px 1200px at 100% -10%, rgba(150, 90, 255, .12), transparent 50%),
    radial-gradient(1000px 1000px at -10% 110%, rgba(120, 65, 220, .10), transparent 40%),
    #0d0616;
}

.limiter { min-height: 100%; display: grid; place-items: center; padding: clamp(16px, 4vw, 32px); }
.container-login100 { width: 100%; max-width: 980px; }

.outer {
  width: 100%;
  max-width: 720px;
  border-radius: calc(var(--card-radius) + 1px);
  padding: 1px;
  margin-inline: auto;
  background: radial-gradient(circle 240px at 0% 0%, #ffffff, #160b22);
  position: relative;
  box-shadow: 0 10px 30px rgba(22, 11, 34, .18);
}

.card {
  z-index: 1;
  width: 100%;
  border-radius: var(--card-radius);
  border: 1px solid #2b1f3a;
  background: radial-gradient(circle 320px at 0% 0%, #3a2356, #160b22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* para LED */
  flex-direction: column;
  color: #fff;
  padding: clamp(22px, 4vw, 32px);
  overflow: hidden;
}

.logo { width: clamp(160px, 36vw, 240px); height: auto; margin-bottom: var(--space-1); }
.center { text-align: center; }

/* ----------------- Tipografia / espaçamentos de topo ----------------- */
h1 {
  font-size: clamp(22px, 3.5vw, 34px);
  line-height: 1.15;
  margin: var(--space-1) 0 var(--space-1);
}
p {
  margin: 0 0 var(--space-2);
  color: #e6dbff;
  opacity: .9;
}

/* ----------------- Ações ----------------- */
.actions {
  display: grid;
  gap: var(--space-2);
  width: min(520px, 100%);
  margin-top: var(--space-2);     /* aproxima do subtítulo */
  margin-bottom: var(--space-4);  /* respiro antes das seções seguintes */
}

/* CTA ASSINE JÁ (com hover – continua roxo) */
.flex { display: flex; align-items: center; justify-content: center; gap: 8px; }
.outer-cont {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border: none; font-size: 1rem; cursor: pointer; position: relative;
  background: linear-gradient(90deg, #7c3aed, #a855f7, #6d28d9); background-size: 200% 200%;
  border-radius: 12px; color: #fff; transition: all 0.3s ease;
  box-shadow: inset 0 0 5px #ffffffa9, inset 0 35px 30px #000, 0 5px 10px #00000055;
  text-decoration: none; text-shadow: 0 1px 1px #000;
}
.outer-cont::before {
  content: ""; position: absolute; inset: 0; margin: auto; border-radius: 12px; filter: blur(0); z-index: -1;
  background: conic-gradient(#0000 80deg, #a78bfa, #c084fc, #7c3aed, #0000 280deg);
  transition: all 0.3s ease;
}
.outer-cont:hover::before { filter: blur(18px); }
.outer-cont:hover {
  transform: translateY(-2px) scale(1.02);
  background-position: 100% 0;
  box-shadow: inset 0 0 5px #ffffff70, inset 0 35px 30px #000000e0, 0 10px 24px #5b21b60f, 0 0 16px #8b5cf6aa;
}
.outer-cont:active::before { filter: blur(5px); transform: translateY(1px); }
.outer-cont:active { box-shadow: inset 0 0 4px #ffffffa9, inset 0 35px 30px #000; margin-top: 2px; }

/* ----------------- Botões secundários – LIQUID GLASS -----------------
   Aplica-se aos quatro botões: 2ª via, Suporte, Site, Ouvidoria       */
.btn, .btn-lg, .btn-block {
  appearance: none;
  border-radius: 14px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
  /* vidro translúcido */
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),      /* brilho superior interno */
    inset 0 -8px 24px rgba(255,255,255,.08),  /* miolo levemente iluminado */
    0 8px 24px rgba(0,0,0,.28);               /* sombra externa suave */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .15s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.12));
  border-color: rgba(255,255,255,.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -10px 28px rgba(255,255,255,.10),
    0 12px 28px rgba(0,0,0,.32);
}
.btn:active {
  transform: translateY(0);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10));
  box-shadow:
    inset 0 0 0 rgba(255,255,255,0),
    inset 0 -6px 18px rgba(255,255,255,.08),
    0 6px 16px rgba(0,0,0,.26);
}

/* ----------------- Seção: Lojas (lado a lado) ----------------- */
.stack.center { margin-top: var(--space-4) !important; } /* distância a partir dos botões */
.txt1 { margin: 0; line-height: 1.25; }

.store-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  align-items: center;
  justify-items: center;
  width: min(520px, 100%);
  margin: var(--space-2) auto 0; /* distância controlada abaixo do título da seção */
}
.store-badges img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: auto;
  border-radius: 12px;
}

/* ----------------- Seção: Redes sociais (ícones em linha) ----------------- */
.social-icons {
  display: grid;
  grid-template-columns: repeat(3, 56px);
  gap: 14px;
  justify-content: center;
  width: min(520px, 100%);
  margin: var(--space-2) auto 0;  /* distância após o título "Siga a Ora..." */
}
.social-icons__item {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
}
.social-icons__item i { font-size: 22px; line-height: 1; }
.social-icons__item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.36);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* ----------------- LED vermelho na BORDA do card ----------------- */
.ray { display: none; } /* opcional; mantém o card limpo */

.dot {
  --size: 8px;
  /* pad negativo posiciona o centro do LED exatamente sobre a borda */
  --pad: calc(-1 * var(--size) / 2);
  width: var(--size); height: var(--size);
  position: absolute; z-index: 3; pointer-events: none;
  background: #ff2d2d; border-radius: 999px;
  box-shadow: 0 0 8px #ff2d2d, 0 0 16px #ff2d2d, 0 0 28px #ff2d2d;
  animation: fiber 6s linear infinite;
}

/* Perímetro retilíneo; para seguir o border-radius perfeito, posso trocar por offset-path */
@keyframes fiber {
  0%   { top: var(--pad); left: var(--pad); }
  25%  { top: var(--pad); left: calc(100% - var(--pad)); }
  50%  { top: calc(100% - var(--pad)); left: calc(100% - var(--pad)); }
  75%  { top: calc(100% - var(--pad)); left: var(--pad); }
  100% { top: var(--pad); left: var(--pad); }
}

/* ----------------- Footer ----------------- */
.footer {
  margin-top: var(--space-4);
  font-size: 12px;
  opacity: .7;
  text-align: center;
  color: #e6dbff;
}

/* ----------------- Responsividade fina ----------------- */
@media (max-width: 520px){
  .store-badges img { max-width: 190px; }
}
@media (max-width: 420px){
  .store-badges img { max-width: 170px; }
  .social-icons { grid-template-columns: repeat(3, 50px); gap: 12px; }
  .social-icons__item { width: 50px; height: 50px; }
  .actions { margin-bottom: var(--space-3); gap: var(--space-2); }
  .stack.center { margin-top: var(--space-3) !important; }
}
