:root {
  --orange: #ff5a00;
  --orange-2: #ff8a00;
  --line: rgba(255,255,255,.12);
  --text: #fff;
  --muted: rgba(255,255,255,.72);
  --soft: rgba(255,90,0,.13);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Sora', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,90,0,.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,138,0,.18), transparent 30%),
    linear-gradient(135deg, #050506, #11131a 55%, #07080b);
}
.page {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 24px;
}
.hero {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: stretch;
}
.brand, .hero-card, .result {
  border: 1px solid rgba(255,90,0,.42);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
}
.brand {
  min-height: 320px;
  padding: 34px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.62)),
    radial-gradient(circle at 82% 52%, rgba(255,90,0,.36), transparent 25%);
}
.brand-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  transform: translateY(-6px);
}
.logo {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 0 40px rgba(255,90,0,.42);
  position: relative;
  top: -10px;

}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 800;
}
.tagline {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 16px;
  font-weight: 700;
}
.hero-card {
  min-height: 320px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.small-title {
  display: inline-flex;
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-card h2 {
  font-size: 38px;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}
.muted { color: var(--muted); }
.search {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: white;
  border-radius: 16px;
  padding: 16px;
  font-size: 16px;
  outline: none;
  text-transform: uppercase;
}
button {
  border: 0;
  border-radius: 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.error {
  margin: 14px 0 0;
  color: #ffb199;
  font-weight: 700;
}
.result {
  margin-top: 24px;
  padding: 28px;
}
.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.result-header h2 {
  font-size: 34px;
  margin-bottom: 0;
}
.badge {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--orange-2);
  font-weight: 900;
  white-space: nowrap;
}
.progress-block {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(0,0,0,.18);
}
.progress-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bar {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.bar-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: width .6s ease;
}
.caption {
  color: var(--muted);
  margin: 10px 0 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.stats article {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
}
.stats span, .stats small {
  display: block;
  color: var(--muted);
}
.stats strong {
  display: block;
  color: var(--orange-2);
  font-size: 28px;
  margin: 8px 0 4px;
}
.message {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,90,0,.17), rgba(255,138,0,.06));
  border: 1px solid rgba(255,90,0,.25);
}
.icon { font-size: 34px; }
.message h3 { margin-bottom: 4px; }
.message p { margin-bottom: 0; color: var(--muted); }
footer {
  text-align: center;
  color: rgba(255,255,255,.5);
  margin-top: 22px;
  font-size: 13px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .brand, .hero-card { min-height: auto; }
}
@media (max-width: 620px) {
  .page { width: min(100% - 20px, 1100px); padding-top: 18px; }
  .brand, .hero-card, .result { border-radius: 22px; padding: 22px; }
  .brand-inner { flex-direction: column; align-items: flex-start; gap: 18px; transform: none; }
  .logo { width: 78px; height: 78px; }
  h1 { font-size: 52px; }
  .hero-card h2 { font-size: 32px; }
  .search { flex-direction: column; }
  .stats { grid-template-columns: 1fr; }
  .result-header { align-items: flex-start; flex-direction: column; }
}

.countdown {
    color: #ff8a00;

    margin-top: 30px;   /* antes 20 */
    margin-bottom: 4px;

    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(255,138,0,.35);
}

.countdown span {
  color: white;
  font-weight: 900;
}

.days-highlight {
  font-size: 18px;
  color: white;
  font-weight: 900;
}

.countdown-subtitle {
    margin-top: 0px;
    margin-bottom: 8px;

    color: #ff8a00;
    font-size: 15px;
    font-weight: 500;
}

.countdown,
.countdown-subtitle {
    text-align: left;
}