/* ========= PALETA (logo) ========= */
:root {
    --brand-beige: #FBF0E1;
    --brand-orange: #F29940;
    --brand-orange-strong: #ff8a2a;
    --brand-green: #647636;
    --brand-brown: #C46916;
    --bg1: #FFF4E7;
    --bg2: #FFE1BF;
    --bg3: #FAD1A6;
    --card: rgba(255, 255, 255, .9);
    --stroke: #f0d8bf;
    --txt: #3a2a1b;
    --muted: #6a513c;
    --shadow: 0 6px 22px rgba(196, 105, 22, .14);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    color: var(--txt);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Arial, sans-serif;
    background: radial-gradient(1100px 700px at 50% -18%, var(--bg3) 0%, var(--bg2) 45%, var(--bg1) 100%) fixed;
}

.wrap {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: clamp(10px, 2.5vw, 24px);
}

/* Logo + disco solar */
.brand {
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate
}

.brand::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: min(320px, 70vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--brand-orange) 30%, #fff 0%) 0%,
            color-mix(in oklab, var(--brand-orange) 70%, #000 0%) 55%, transparent 62%);
    filter: blur(12px);
    opacity: .33;
    transform: translateY(4px);
}

.logo {
    width: min(210px, 46vw);
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(194, 103, 22, .16));
    border-radius: 100%;
}

/* Cartão enxuto */
.content {
    width: min(760px, 100%);
    text-align: center;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: clamp(12px, 2.6vw, 20px);
    box-shadow: var(--shadow);
    backdrop-filter: blur(3px);
}

h1.hero-title {
    margin: 0 0 .25rem;
    font-weight: 500;
    font-size: clamp(1.15rem, 1.9vw + .7rem, 1.9rem);
    color: #333)
}

.hero-title strong {
    color: inherit
}

.taglines {
    margin: .15rem auto .5rem;
    display: grid;
    gap: .15rem;
    color: var(--txt)
}

.taglines p {
    margin: 0;
    font-size: clamp(.95rem, .8vw + .7rem, 1.05rem)
}

.taglines strong {
    color: #333;
    font-weight: normal;
}

/* ======= TICKER COMPACTO (10d 00h 52m 30s) ======= */
.ticker {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: clamp(8px, 1.8vw, 14px);
    margin: .5rem auto 1rem;
    flex-wrap: wrap;
    /* se precisar, quebra entre grupos, nunca dentro do número */
}

.t {
    display: inline-flex;
    align-items: baseline;
    font-variant-numeric: tabular-nums;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    font-size: clamp(2rem, 6.5vw, 3rem);
    color: var(--brand-orange-strong);
}

.t .u {
    margin-left: .15em;
    font-size: .55em;
    letter-spacing: .02em;
    color: var(--brand-brown);
    opacity: .9;
}

/* Botão WhatsApp — FLAT */
.cta {
    --wa: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .8rem 1rem;
    border-radius: 12px;
    background: var(--wa);
    color: #fff;
    border: none;
    text-decoration: none;
    font-weight: 900;
    box-shadow: none;
    transition: transform .12s ease, filter .12s ease;
}

.cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.05)
}

.cta:active {
    transform: translateY(0) scale(.98)
}

.wa-icon {
    width: 1.2em;
    height: 1.2em;
    object-fit: contain;
    display: block
}

.launch-note {
    margin-top: .6rem;
    color: var(--brand-green);
    font-weight: 700
}

.footer {
    opacity: .85;
    text-align: center;
    margin-top: auto;
    font-size: .88rem;
    color: color-mix(in oklab, var(--brand-brown) 85%, #000 0% / 92%)
}

.noscript {
    background: #FFF1DE;
    color: #4a2e10;
    padding: 10px 12px;
    text-align: center;
    border-top: 1px solid #f0d8bf
}

/* Micro-ajustes telas bem estreitas */
@media (max-width: 360px) {
    .t {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .ticker {
        gap: 8px
    }
}

/* Subtítulo do timer (pill compacto) */
.subhead-count {
    display: inline-block;
    margin: .2rem auto .4rem;
    padding: .3rem .6rem;
    border-radius: 999px;
    background: color-mix(in oklab, var(--brand-orange) 18%, #fff 82%);
    border: 1px solid #f2dfc7;
    color: #8a4d11;
    font-weight: 800;
    font-size: .9rem;
}

@media (max-width: 360px) {
    .subhead-count {
        font-size: .85rem;
        padding: .25rem .55rem;
    }
}