/* =============================================================
   TelePrémio — folha de estilos principal
   Paleta alinhada ao index.html: laranja vivo, branco e cinza suave
   ============================================================= */

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/KumbhSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Kumbh Sans';
    src: url('../fonts/KumbhSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

:root {
    --ouro: #fba800;
    --ouro-escuro: #fb6f00;
    --ouro-suave: rgba(251, 168, 0, 0.14);
    --marfim: #f8f9fa;
    --branco: #ffffff;
    --texto: #24272d;
    --texto-2: #5f6368;
    --linha: #e9ecef;
    --linha-escura: rgba(255, 255, 255, 0.28);
    --verde: #2e8b3d;
    --vermelho: #c0392b;
    --sombra: 0 16px 40px rgba(36, 39, 45, 0.12);
    --raio: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kumbh Sans', 'Segoe UI', Arial, sans-serif;
    color: var(--texto);
    background: var(--branco);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

/* ---------- utilitários tipográficos ---------- */
.kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ouro-escuro);
    margin-bottom: 1rem;
}

.dark .kicker {
    color: var(--ouro);
}

h1, h2, h3 {
    line-height: 1.15;
    font-weight: 700;
}

.titulo-seccao {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    margin-bottom: 0.9rem;
}

.sub-seccao {
    color: var(--texto-2);
    max-width: 38rem;
    margin-bottom: 3rem;
    font-size: 1.02rem;
}

.centro {
    text-align: center;
}

.centro .sub-seccao {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- aviso sandbox ---------- */
.aviso-sandbox {
    background: #fff4d9;
    color: #a86a00;
    border-bottom: 1px solid #ffe3a1;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    padding: 0.5rem 1rem;
}

.aviso-sandbox i {
    margin-right: 0.45rem;
}

/* ---------- botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.9rem;
    border-radius: var(--raio);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-ouro {
    background: linear-gradient(90deg, var(--ouro), var(--ouro-escuro));
    color: var(--branco);
    box-shadow: 0 12px 30px rgba(251, 111, 0, 0.28);
}

.btn-ouro:hover {
    background: linear-gradient(90deg, #ffb51c, #fa6500);
    transform: translateY(-1px);
}

.btn-claro {
    background: var(--branco);
    color: var(--ouro-escuro);
    box-shadow: 0 12px 30px rgba(150, 75, 0, 0.12);
}

.btn-claro:hover {
    color: var(--texto);
    transform: translateY(-1px);
}

.btn-contorno {
    background: transparent;
    color: var(--branco);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-contorno:hover {
    border-color: var(--ouro);
    color: var(--ouro);
}

.btn-quieto {
    background: transparent;
    color: var(--texto);
    border: 1px solid var(--linha);
}

.btn-quieto:hover {
    border-color: var(--texto);
}

.btn-bloco {
    width: 100%;
    font-size: 1.05rem;
    padding: 1rem;
}

/* ---------- cabeçalho ---------- */
.topo {
    background-image: linear-gradient(to right, var(--ouro), var(--ouro-escuro));
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.marca {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--branco);
    font-weight: 700;
}

.marca img {
    width: 60px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.menu a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: var(--branco);
    opacity: 0.78;
}

.menu a.btn {
    color: var(--branco);
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-size: 0.88rem;
    box-shadow: none;
}

.menu a.btn:hover {
    color: var(--branco);
    opacity: 1;
    background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 0.35rem 0.7rem;
    font-size: 1.25rem;
    color: var(--branco);
    cursor: pointer;
}

/* ---------- herói ---------- */
.heroi {
    background-color: var(--ouro);
    background-image: url('../images/fundo.png');
    background-size: cover;
    background-position: center;
    color: var(--branco);
    padding: 4.7rem 0 4.3rem;
    position: relative;
    overflow: hidden;
}

.heroi-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 3rem;
    align-items: center;
}

.heroi-copy,
.heroi-compra {
    min-width: 0;
}

.heroi h1 {
    font-size: clamp(2.35rem, 4vw, 3.35rem);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.heroi h1 .ouro {
    color: var(--ouro);
}

.heroi .chamada {
    color: var(--branco);
 
    padding-left: 1.35rem;
    font-size: 1rem;
    max-width: 32rem;
    margin-bottom: 1.25rem;
}

.heroi-accoes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.beneficios-hero {
    display: grid;
    gap: 0.55rem;
    margin: 1.2rem 0 1.7rem;
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--branco);
}

.beneficio i {
    color: #ffd24a;
    font-size: 1rem;
}

.contactos-hero {
    display: grid;
    gap: 0.35rem;
    
    padding-left: 1.35rem;
    color: var(--branco);
    font-size: 0.98rem;
}

.contactos-hero strong {
    margin-bottom: 0.25rem;
}

.contactos-hero span {
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.contactos-hero i {
    width: 1rem;
    color: #ffcb2f;
}

.heroi-compra {
    position: relative;
    display: grid;
    justify-items: end;
    align-items: start;
}

.hero-premios {
    width: 100%;
    max-width: 690px;
    filter: drop-shadow(0 25px 35px rgba(150, 75, 0, 0.2));
    animation: flutuar 6s ease-in-out infinite;
}

@keyframes flutuar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ---------- cartão de compra ---------- */
.cartao-compra {
    background: rgba(255, 255, 255, 0.96);
    color: var(--texto);
    border-radius: var(--raio);
    box-shadow: 0 26px 70px rgba(116, 58, 0, 0.24);
    padding: 1.55rem;
    width: min(420px, 100%);
    max-width: 100%;
    margin-top: -2rem;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.cartao-compra .cabeca {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.6rem;
}

.cartao-compra .cabeca h2 {
    font-size: 1.2rem;
}

.cartao-compra .cabeca .preco {
    font-size: 0.8rem;
    color: var(--texto-2);
}

.cartao-compra .cabeca .preco strong {
    color: var(--texto);
    font-size: 1rem;
}

.rotulo-campo {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--texto-2);
    margin-bottom: 0.5rem;
}

.linha-qtd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--linha);
    border-radius: var(--raio);
    padding: 0.65rem 0.75rem 0.65rem 1.1rem;
    margin-bottom: 1.3rem;
}

.linha-qtd .info strong {
    display: block;
    font-size: 0.95rem;
}

.linha-qtd .info span {
    display: block;
    font-size: 0.78rem;
    color: var(--texto-2);
}

.linha-qtd .info {
    min-width: 0;
}

.contador {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 0 0 auto;
}

.contador button {
    width: 38px;
    height: 38px;
    border-radius: var(--raio);
    border: 1px solid var(--linha);
    background: var(--marfim);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--texto);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.contador button:hover {
    border-color: var(--ouro);
    background: var(--ouro-suave);
}

.contador .qtd {
    min-width: 2.6ch;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.campo-telefone {
    margin-bottom: 1.3rem;
}

.input-wrap {
    display: flex;
    border: 1px solid var(--linha);
    border-radius: var(--raio);
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input-wrap:focus-within {
    border-color: var(--ouro);
    box-shadow: 0 0 0 3px var(--ouro-suave);
}

.input-wrap .prefixo {
    background: var(--marfim);
    color: var(--texto-2);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--linha);
}

.input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.85rem 1rem;
    min-width: 0;
    color: var(--texto);
}

.input-wrap input::placeholder {
    color: #c5c0b5;
    font-weight: 400;
}

.total-linha {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;

    margin-bottom: 1.2rem;
}

.total-linha .etiqueta {
    font-size: 0.85rem;
    color: var(--texto-2);
}

.total-linha .valor {
    font-size: 1.6rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.total-linha .valor small {
    font-size: 0.9rem;
    color: var(--texto-2);
    font-weight: 400;
}

.nota-rodape-cartao {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--texto-2);
    text-align: center;
    line-height: 1.5;
}

.erro-form {
    display: none;
    background: #fbeeec;
   
    color: #8e2a1e;
    border-radius: 6px;
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
    margin-bottom: 1.1rem;
}

/* ---------- faixa do sorteio ---------- */
.faixa-sorteio {
    background: linear-gradient(100deg, var(--ouro), var(--ouro-escuro));
    color: var(--branco);
    padding: 3.2rem 0;
    border-bottom: 4px solid #ffd24a;
}

.faixa-sorteio .grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.faixa-sorteio h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    margin-bottom: 0.6rem;
}

.faixa-sorteio h2 em {
    font-style: normal;
    color: var(--branco);
    text-decoration: underline;
    text-decoration-color: #ffd24a;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.faixa-sorteio p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 38rem;
    font-size: 0.98rem;
}

.chip-directo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--branco);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.chip-directo .ponto-vivo {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--branco);
    animation: pulsar 1.6s ease-in-out infinite;
}

@keyframes pulsar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.relogio {
    text-align: center;
    min-width: 240px;
}

.relogio {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--raio);
    padding: 1.1rem 1.6rem;
}

.relogio .titulo {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.4rem;
}

.relogio .tempo {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--branco);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.relogio .legenda {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- secções ---------- */
.seccao {
    padding: 5.5rem 0;
}

.seccao-marfim {
    background: #ffffff;
}

/* prémios */
.premios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.premio-cartao {
    background: #f8f9fa;
    border: 1px solid var(--linha);
    border-radius: var(--raio);
    padding: 2.2rem 2rem;
    text-align: left;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premio-cartao:hover {
    transform: translateY(-4px);
    box-shadow: var(--sombra);
}

.premio-cartao .ordem {
    position: absolute;
    top: 1.6rem;
    right: 1.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--texto-2);
    text-transform: uppercase;
}

.premio-cartao .icone {
    width: 54px;
    height: 54px;
    border-radius: var(--raio);
    background: rgba(251, 168, 0, 0.14);
    color: var(--ouro-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.4rem;
}

.premio-cartao h3 {
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
}

.premio-cartao p {
    color: var(--texto-2);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
}

.premio-cartao .valor {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ouro-escuro);
    font-variant-numeric: tabular-nums;
}

.premio-cartao .valor small {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--texto-2);
    margin-bottom: 0.15rem;
}

.banner-largo {
    margin-top: 3rem;
    border-radius: var(--raio);
    overflow: hidden;
    box-shadow: var(--sombra);
}

.banner-largo img {
    width: 100%;
}

/* como participar */
.jogar-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.passos {
    counter-reset: passo;
    margin-bottom: 2rem;
}

.passo {
    display: flex;
    gap: 1.4rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--linha);
}

.passo:last-child {
    border-bottom: none;
}

.passo .numero {
    counter-increment: passo;
    flex: 0 0 auto;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ouro-escuro);
    line-height: 1;
    min-width: 2.2rem;
    font-variant-numeric: tabular-nums;
}

.passo .numero::before {
    content: counter(passo, decimal-leading-zero);
}

.passo h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.passo p {
    color: var(--texto-2);
    font-size: 0.93rem;
}

.caixa-ussd {
    background: #fff4d9;
    color: #6b4a00;
    border: 1px solid #ffe3a1;
   
    border-radius: var(--raio);
    padding: 1.6rem 1.8rem;
}

.caixa-ussd h4 {
    color: #4d3500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.caixa-ussd h4 i {
    color: var(--ouro-escuro);
}

.caixa-ussd ol {
    padding-left: 1.2rem;
    font-size: 0.9rem;
    display: grid;
    gap: 0.3rem;
}

.caixa-ussd code {
    background: var(--branco);
    color: var(--ouro-escuro);
    border: 1px solid #ffe3a1;
    padding: 0.05rem 0.45rem;
    border-radius: 5px;
    font-weight: 700;
    font-family: inherit;
    font-size: 0.88rem;
}

.jogar-grid .telefone {
    width: 82%;
    margin: 0 auto;
    filter: drop-shadow(0 24px 40px rgba(150, 75, 0, 0.22));
}

/* galeria */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.galeria-grid figure {
    border-radius: var(--raio);
    overflow: hidden;
    box-shadow: var(--sombra);
}

.galeria-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.galeria-grid figure:hover img {
    transform: scale(1.02);
}

/* confiança / suporte */
.tres-colunas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.item-simples {
    background: #f8f9fa;
    border: 1px solid var(--linha);
    border-radius: var(--raio);
    padding: 2rem 1.8rem;
}

.item-simples i {
    color: var(--ouro-escuro);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.item-simples h3 {
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
}

.item-simples p {
    color: var(--texto-2);
    font-size: 0.9rem;
}

.item-simples a {
    color: var(--texto);
    text-decoration: none;
    font-weight: 700;
}

.item-simples a:hover {
    color: var(--ouro-escuro);
}

/* ---------- rodapé ---------- */
.rodape {
    background-color: var(--ouro-escuro);
    background-image: url('../images/fundo.png');
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 4.5rem 0 1.8rem;
}

.rodape-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.rodape .logo {
    width: 120px;
    margin-bottom: 1.2rem;
}

.rodape p.descricao {
    font-size: 0.92rem;
    max-width: 21rem;
}

.rodape h4 {
    color: var(--branco);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.rodape ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
}

.rodape a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.rodape a:hover {
    color: var(--branco);
}

.rodape .sociais {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.rodape .sociais a {
    width: 40px;
    height: 40px;
    border-radius: var(--raio);
    border: 1px solid var(--linha-escura);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.rodape .sociais a:hover {
    border-color: var(--ouro);
}

.rodape .base {
    border-top: 1px solid var(--linha-escura);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.rodape .base a {
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- modal ---------- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(97, 55, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.activo {
    display: flex;
}

.modal-caixa {
    background: var(--branco);
    border-radius: var(--raio);
    box-shadow: 0 40px 100px rgba(97, 55, 0, 0.4);
    width: min(28rem, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.4rem 2.2rem;
    text-align: center;
}

.modal-caixa h3 {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.icone-estado {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
}

.icone-estado.aguardar {
    background: var(--ouro-suave);
    color: var(--ouro-escuro);
}

.icone-estado.sucesso {
    background: #e8f4ea;
    color: var(--verde);
}

.icone-estado.falha {
    background: #fbeeec;
    color: var(--vermelho);
}

.modal-caixa p.texto {
    color: var(--texto-2);
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
}

.modal-caixa p.texto strong {
    color: var(--texto);
}

.nota-aguardar {
    font-size: 0.82rem;
    color: var(--texto-2);
}

.bilhetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 0.7rem;
    margin: 1.4rem 0;
    max-height: 38vh;
    overflow-y: auto;
    padding: 0.2rem;
}

.bilhete-item {
    background: var(--marfim);
    border: 1px solid var(--linha);

    border-radius: var(--raio);
    padding: 0.75rem 0.4rem 0.6rem;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

.bilhete-item small {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--texto-2);
    margin-top: 0.2rem;
}

.modal-accoes {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.selo-teste {
    display: inline-block;
    background: var(--marfim);
    border: 1px solid var(--linha);
    color: var(--texto-2);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-top: 1.2rem;
}

/* ---------- responsivo ---------- */
@media (max-width: 960px) {
    .heroi-grid,
    .jogar-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faixa-sorteio .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .relogio {
        margin: 0 auto;
    }

    .premios-grid,
    .tres-colunas {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .rodape-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-image: linear-gradient(to right, var(--ouro), var(--ouro-escuro));
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem 5%;
        gap: 1.2rem;
    }

    .menu.aberto {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .heroi {
        padding: 3.5rem 0 4rem;
    }

    .heroi-compra {
        justify-items: center;
    }

    .hero-premios {
        max-width: 560px;
    }

    .cartao-compra {
        margin-top: -0.4rem;
    }

    .seccao {
        padding: 4rem 0;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(1140px, calc(100% - 24px));
    }

    .topo-inner {
        padding: 0.65rem 0;
    }

    .marca img {
        width: 54px;
    }

    .heroi {
        padding: 3rem 0 3.4rem;
    }

    .heroi h1 {
        font-size: 1.52rem;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .heroi-copy,
    .heroi-compra,
    .heroi-accoes {
        width: min(100%, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
    }

    .heroi .chamada,
    .contactos-hero {
        padding-left: 1rem;
    }

    .beneficio,
    .contactos-hero {
        font-size: 0.9rem;
    }

    .heroi-accoes {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .heroi-accoes .btn {
        padding: 0.85rem 0.75rem;
        font-size: 0.82rem;
        min-width: 0;
        text-align: center;
        white-space: normal;
    }

    .cartao-compra {
        padding: 1.15rem;
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        justify-self: center;
    }

    .cartao-compra .cabeca {
        gap: 1rem;
    }

    .linha-qtd {
        align-items: flex-start;
        gap: 0.85rem;
    }

    .contador button {
        width: 36px;
        height: 36px;
    }

    .faixa-sorteio {
        padding: 2.6rem 0;
    }

    .relogio {
        min-width: 0;
    }

    .relogio .tempo {
        font-size: 1.8rem;
    }

    .premio-cartao,
    .item-simples {
        padding: 1.6rem 1.25rem;
    }

    .jogar-grid {
        gap: 2.2rem;
    }

    .caixa-ussd {
        padding: 1.35rem 1.2rem;
    }

    .modal-caixa {
        padding: 1.7rem 1.25rem;
    }
}
