/* ============================================================
   RAIO-X DA LP — CSS compartilhado entre as 3 páginas
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-heading:  #b6f3ff;
  --c-section:  #8bd0ff;
  --c-body:     #f2f2f2;
  --c-muted:    #acdeff;
  --c-border:   #84b7ff;
  --c-glass:    rgba(255,255,255,0.12);
  --c-field:    rgba(255,255,255,0.14);
  --c-green:    #34d399;
  --c-yellow:   #fbbf24;
  --c-red:      #f87171;
  --max-w:      1140px;
}

html, body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--c-body);
  overflow-x: hidden;
}

/* ── Logo ── */
.rx-logo { display: flex; align-items: center; gap: 12px; }
.rx-logo img { width: 180px; height: auto; display: block; }

/* ── Botão padrão ── */
.rx-btn {
  display: inline-block;
  background: linear-gradient(90deg, #fff, #c8f5ff);
  border: none;
  border-radius: 100px;
  padding: clamp(14px, 4vw, 18px) clamp(14px, 5vw, 45px);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(0.7rem, 3.4vw, 1rem);
  line-height: 1.5em;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
  white-space: normal;
  text-decoration: none;
  text-align: center;
}
.rx-btn:hover { opacity: 0.9; }
.rx-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Score ring ── */
.r-score-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 50px;
}
.r-score-pill {
  flex: 1 1 auto;
  height: 68px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: 52px;
  padding-right: 16px;
  overflow: hidden;
}
.r-score-label {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  line-height: 1.3;
}
.r-score-ring {
  position: absolute;
  left: 0;
  width: 82px;
  height: 82px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
}
.r-score-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.r-ring-bg { fill: none; stroke: rgba(0,0,0,0.08); stroke-width: 6; }
.r-ring-fg {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke: var(--c-yellow);
  transition: stroke-dashoffset 1.2s ease, stroke 0.4s ease;
}
.r-score-val {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  z-index: 2;
}
