/* Fundo escuro no elemento raiz — evita flash branco antes do body carregar */
html {
    background-color: #020818;
}

@font-face {
    font-family: "Porto Roobert";
    src: url(../font/PortoRoobert-Light.ttf);
    font-weight: 300;
}

@font-face {
    font-family: "Porto Roobert";
    src: url(../font/PortoRoobert-Medium.ttf);
    font-weight: 500;
}

@font-face {
    font-family: "Porto Roobert";
    src: url(../font/PortoRoobert-Bold.ttf);
    font-weight: 700;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    position: relative;
    color: white;
    font-family: "Porto Roobert", sans-serif;
    font-weight: 300;
}

/* ── Telas do SPA ─────────────────────────────────────────────────────────── */

.app-screen {
    position: absolute;
    inset: 0;
    display: none;
    overflow: hidden;
}

.app-screen.is-active {
    display: flex;
    flex-direction: column;
    animation: appScreenEnter 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.app-screen.is-exiting {
    display: flex;
    flex-direction: column;
    animation: appScreenExit 380ms cubic-bezier(0.4, 0, 1, 1) forwards;
    pointer-events: none;
}

@keyframes appScreenEnter {
    from { opacity: 0; transform: translateY(72px) scale(0.96); filter: blur(6px); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0); }
}

@keyframes appScreenExit {
    from { opacity: 1; transform: translateY(0)     scale(1);    filter: blur(0); }
    to   { opacity: 0; transform: translateY(-56px) scale(1.04); filter: blur(6px); }
}

/* ── Welcome screen ──────────────────────────────────────────────────────── */

#screenWelcome {
    background-image: url(../img/bg-inicio-v2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

img {
    max-width: 100%;
}

.inicio {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inicio-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-top: 140px;
}

p {
    font-size: 40px;
    text-align: center;


}

.logo-porto {
    display: block;
    width: 344px;
    margin: auto;
}

h1 {
    font-weight: 300;
    font-size: 96px;
    text-align: center;
    letter-spacing: 32px;
    text-shadow: 0 0 30px #3f9efb;
    margin: 0;
}

.d-flex {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.btn-primary {
    -webkit-appearance: none;
    appearance: none;

    background: #0C1135;
    background: linear-gradient(0deg, rgba(12, 17, 53, 1) 0%, rgba(44, 61, 168, 1) 100%);

    border: 5px solid #2062ac;
    border-radius: 40px;

    width: 400px;
    height: 148px;

    box-shadow: 0px 20px 28px rgba(63, 158, 251, 0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white !important;
    text-decoration: none;
    font-size: 52px;
    font-weight: 500;
    cursor: pointer;
}

#screenRoleta {
    background:
        radial-gradient(circle at top, rgba(25, 64, 177, 0.35), transparent 35%),
        #020512;
}

.roleta-stage {
    position: relative;
    width: min(100vw, calc(100vh * 0.5625));
    min-height: 100vh;
    margin: 0 auto;
    padding: 64px 58px 80px;
    box-sizing: border-box;
    background:
        linear-gradient(180deg, rgba(1, 7, 24, 0.35), rgba(1, 7, 24, 0.75)),
        url(../img/fundo-roleta.png) center / cover no-repeat;
    overflow: hidden;
}

.roleta-home {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 96px;
    display: block;
    z-index: 110;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.roleta-home img,
.roleta-logo,
.roleta-title,
.roleta-pointer,
.roleta-wheel-backdrop,
.roleta-center-button img,
.roleta-cta-icon {
    display: block;
    width: 100%;
}

/* Botão "Ir para Roleta" no topo da tela final do concierge —
   substituiu o antigo home. Usa o PNG de botão "Roleta" em seu
   aspecto natural (retangular), não estica como um ícone. */
/* Botão "Ir para Roleta" no topo da tela final do concierge.
   Usa as mesmas dimensões e estilo do .roleta-home (96px quadrado);
   só esconde por padrão e libera quando a sub-tela result está ativa. */
.btn-ir-roleta {
    display: none;
}
.btn-ir-roleta svg {
    display: block;
    width: 100%;
    height: auto;
}
.concierge-stage.show-roleta-btn .btn-ir-roleta {
    display: block;
    animation: cardSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

/* Home do concierge: visível em todas as sub-telas (intro/quiz/loading);
   escondido apenas na tela final, onde o btn-ir-roleta toma o lugar */
.btn-home-concierge {
    display: block;
}
.concierge-stage.show-roleta-btn .btn-home-concierge {
    display: none;
}

.roleta-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 18px;
}

.roleta-logo {
    width: 250px;
    margin-bottom: 70px;
}

.roleta-title {
    width: min(420px, 74%);
    margin-bottom: 70px;
}

.roleta-subtitle {
    width: min(640px, 100%);
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: #ffffff;
    margin: 0;
    padding: 0 0 20px;
}

.azul-porto {
    color: #38b6ff;
}

.roleta-section {
    margin-top: 72px;
}

.roleta-wheel-area {
    position: relative;
}

.roleta-pointer {
    position: relative;
    z-index: 4;
    width: 56px;
    margin: 0 auto -12px;
    filter: drop-shadow(0 0 16px rgba(40, 174, 255, 0.9));
}

.roleta-wheel-shell {
    position: relative;
}

.roleta-wheel-glow {
    position: absolute;
    inset: 7% 7%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 75, 255, 0.28), rgba(12, 22, 56, 0.08) 55%, transparent 72%);
    filter: blur(26px);
}

.roleta-wheel-frame {
    position: relative;
    aspect-ratio: 1;
}

.roleta-wheel-backdrop {
    position: absolute;
    inset: 0;
    object-fit: contain;
    pointer-events: none;
}

/* ── Anel neon externo — gira visualmente com a roleta ───────────────────── */
.roleta-wheel-frame::after {
    content: "";
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    border: 3px solid rgba(56, 182, 255, 0.9);
    box-shadow:
        0 0 12px  rgba(56, 182, 255, 1),
        0 0 32px  rgba(56, 182, 255, 0.7),
        0 0 70px  rgba(20, 130, 255, 0.4),
        inset 0 0 14px rgba(56, 182, 255, 0.25);
    pointer-events: none;
    z-index: 5;
    animation: neon-pulse 2.8s ease-in-out infinite;
}

@keyframes neon-pulse {
    0%, 100% {
        border-color: rgba(56, 182, 255, 0.9);
        box-shadow:
            0 0 12px  rgba(56, 182, 255, 1),
            0 0 32px  rgba(56, 182, 255, 0.7),
            0 0 70px  rgba(20, 130, 255, 0.4),
            inset 0 0 14px rgba(56, 182, 255, 0.25);
    }
    50% {
        border-color: rgba(110, 218, 255, 1);
        box-shadow:
            0 0 20px  rgba(90, 210, 255, 1),
            0 0 55px  rgba(56, 182, 255, 0.9),
            0 0 110px rgba(20, 130, 255, 0.55),
            inset 0 0 24px rgba(56, 182, 255, 0.4);
    }
}

/* ── Celebração ao ganhar prêmio ─────────────────────────────────────────── */

@keyframes neon-celebrate {
    0%   { border-color: rgba(56, 182, 255, 0.9);  box-shadow: 0 0 12px rgba(56,182,255,1), 0 0 32px rgba(56,182,255,0.7), 0 0 70px rgba(20,130,255,0.4), inset 0 0 14px rgba(56,182,255,0.25); }
    12%  { border-color: white;                    box-shadow: 0 0 40px white, 0 0 90px rgba(56,182,255,1), 0 0 180px rgba(56,182,255,0.7), inset 0 0 50px rgba(56,182,255,0.7); }
    24%  { border-color: rgba(56, 182, 255, 0.9);  box-shadow: 0 0 12px rgba(56,182,255,1), 0 0 32px rgba(56,182,255,0.7), 0 0 70px rgba(20,130,255,0.4), inset 0 0 14px rgba(56,182,255,0.25); }
    36%  { border-color: rgba(180, 240, 255, 1);   box-shadow: 0 0 35px rgba(180,240,255,1), 0 0 80px rgba(56,182,255,1), 0 0 150px rgba(56,182,255,0.6), inset 0 0 40px rgba(56,182,255,0.55); }
    48%  { border-color: rgba(56, 182, 255, 0.9);  box-shadow: 0 0 12px rgba(56,182,255,1), 0 0 32px rgba(56,182,255,0.7), 0 0 70px rgba(20,130,255,0.4), inset 0 0 14px rgba(56,182,255,0.25); }
    60%  { border-color: white;                    box-shadow: 0 0 40px white, 0 0 90px rgba(56,182,255,1), 0 0 180px rgba(56,182,255,0.7), inset 0 0 50px rgba(56,182,255,0.7); }
    100% { border-color: rgba(110, 218, 255, 1);   box-shadow: 0 0 20px rgba(90,210,255,1), 0 0 55px rgba(56,182,255,0.9), 0 0 110px rgba(20,130,255,0.55), inset 0 0 24px rgba(56,182,255,0.4); }
}

.roleta-wheel-frame.premio-ganho::after {
    animation: neon-celebrate 1.8s ease-out forwards, neon-pulse 2.8s ease-in-out 1.8s infinite;
}

@keyframes premio-bounce-in {
    0%   { opacity: 0; transform: scale(0.5) translateY(24px); }
    55%  { opacity: 1; transform: scale(1.08); }
    75%  { transform: scale(0.96); }
    100% { transform: scale(1) translateY(0); }
}

.roleta-cta p.premio-reveal {
    animation: premio-bounce-in 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

.roleta-wheel {
    --rotation: 0deg;
    --segment-distance: clamp(180px, 27vw, 285px);
    --spin-duration: 9s;
    --spin-easing: cubic-bezier(0.18, 0.86, 0.2, 1);
    --winner-angle: 0deg;
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    overflow: hidden;
    transform: rotate(var(--rotation));
    transition: transform var(--spin-duration) var(--spin-easing);
    box-shadow:
        inset 0 0 0 3px rgba(41, 120, 255, 0.7),
        inset 0 0 40px rgba(8, 27, 90, 0.85);
}

.roleta-wheel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transform: rotate(var(--winner-angle));
    transform-origin: center;
    transition: opacity 0.35s ease;
    background: conic-gradient(from -36deg, rgb(112 246 255 / 20%) 0deg, rgb(58 214 255 / 15%) 18deg, rgb(27 165 255 / 15%) 50deg, rgb(8 98 255 / 20%) 72deg, transparent 72deg 360deg);
    box-shadow: inset 0 0 55px rgb(89 230 255), inset 0 0 100px rgba(23, 136, 255, 0.18);
    /* filter: drop-shadow(0 0 18px rgba(80, 223, 255, 0.9)) drop-shadow(0 0 42px rgba(25, 125, 255, 0.5)); */
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
    -webkit-mask: radial-gradient(circle, transparent 0 23%, #000 25% 100%);
    mask: radial-gradient(circle, transparent 0 23%, #000 25% 100%);
}

.roleta-wheel.is-showing-result::before {
    opacity: 1;
}

.roleta-wheel-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 0;
    background:
        conic-gradient(from -36deg,
            #041633 0deg 72deg,
            #071c42 72deg 144deg,
            #041633 144deg 216deg,
            #071c42 216deg 288deg,
            #041633 288deg 360deg);
}

.roleta-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: 80px;               /* começa fora do botão central (raio 75px) */
    margin-left: -2px;
    width: 4px;
    height: calc(50% - 80px);       /* vai do offset até a borda do wheel */
    transform-origin: center -80px; /* pivot no centro do wheel, 80px acima do topo do elemento */
    background: linear-gradient(180deg,
        rgba(56, 182, 255, 0.6) 0%,
        rgba(56, 182, 255, 0.95) 40%,
        rgba(56, 182, 255, 1) 100%);
    box-shadow:
        0 0 8px  rgba(56, 182, 255, 0.9),
        0 0 20px rgba(56, 182, 255, 0.6),
        0 0 40px rgba(20, 130, 255, 0.3);
    z-index: 2;
    animation: neon-pulse 2.8s ease-in-out infinite;
}

.roleta-divider-1 {
    transform: rotate(-144deg); /* borda entre seg5→seg1: 36° do topo */
}

.roleta-divider-2 {
    transform: rotate(-72deg);  /* borda entre seg1→seg2: 108° do topo */
}

.roleta-divider-3 {
    transform: rotate(0deg);    /* borda entre seg2→seg3: 180° do topo */
}

.roleta-divider-4 {
    transform: rotate(72deg);   /* borda entre seg3→seg4: 252° do topo */
}

.roleta-divider-5 {
    transform: rotate(144deg);  /* borda entre seg4→seg5: 324° do topo */
}

.roleta-segment {
    --segment-angle: 0deg;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26%;
    z-index: 3;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(var(--segment-angle)) translateY(calc(var(--segment-distance) * -1));
    transition: filter 0.5s ease, opacity 0.5s ease;
}

/* Quando a roleta mostra resultado: apaga todos os segmentos */
.roleta-wheel.is-showing-result .roleta-segment {
    filter: brightness(0.28) saturate(0.3);
    opacity: 0.55;
}

/* Vencedor: destaca com brilho e escala */
.roleta-wheel.is-showing-result .roleta-segment.is-active {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(56, 182, 255, 0.5));
    opacity: 1;
}

.roleta-segment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.75);
    transform: rotate(calc((var(--segment-angle) * -1) - var(--rotation)));
    transition:
        transform var(--spin-duration) var(--spin-easing),
        filter 0.5s ease,
        text-shadow 0.5s ease;
}

/* Texto do vencedor mais brilhante */
.roleta-wheel.is-showing-result .roleta-segment.is-active .roleta-segment-content {
    text-shadow: 0 0 10px rgba(56, 182, 255, 0.4);
}

.roleta-segment-icon {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.roleta-segment span {
    display: block;
    font-size: 21px;
    line-height: 1.08;
    font-weight: 500;
}

.roleta-segment-1 {
    --segment-angle: 0deg;
}

.roleta-segment-2 {
    --segment-angle: 72deg;
}

.roleta-segment-3 {
    --segment-angle: 144deg;
}

.roleta-segment-4 {
    --segment-angle: 216deg;
}

.roleta-segment-5 {
    --segment-angle: 288deg;
}


.roleta-center-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.2), rgba(14, 24, 55, 0.95) 70%);
    box-shadow:
        0 0 0 3px rgba(56, 182, 255, 0.9),
        0 0 16px rgba(56, 182, 255, 1),
        0 0 40px rgba(56, 182, 255, 0.65),
        0 0 80px rgba(20, 130, 255, 0.4);
    padding: 36px;
    cursor: pointer;
    z-index: 6;
    animation: neon-center-pulse 2.8s ease-in-out infinite;
}

.roleta-center-button::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px solid rgba(56, 182, 255, 0.5);
}

.roleta-center-button:hover,
.roleta-center-button:focus-visible {
    outline: none;
}

.roleta-center-button:disabled {
    cursor: wait;
    opacity: 0.95;
    animation: none;
}

@keyframes neon-center-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 3px rgba(56, 182, 255, 0.9),
            0 0 16px rgba(56, 182, 255, 1),
            0 0 40px rgba(56, 182, 255, 0.65),
            0 0 80px rgba(20, 130, 255, 0.4);
    }
    50% {
        box-shadow:
            0 0 0 4px rgba(110, 218, 255, 1),
            0 0 28px rgba(90, 210, 255, 1),
            0 0 65px rgba(56, 182, 255, 0.85),
            0 0 120px rgba(20, 130, 255, 0.55);
    }
}

.roleta-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 48px;
}

.roleta-cta-icon {
    width: auto;
    height: 54px;
    flex: 0 0 auto;
}

.roleta-cta p {
    margin: 0;
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    line-height: 1;
}

.roleta-cta p span {
    color: #38b6ff;
}

.roleta-cta-sub {
    display: block;
    margin-top: 14px;
    font-size: 24px;
    font-weight: 300;
    opacity: 0.6;
    animation: screenFadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.roleta-footer {
    position: absolute;
    left: 50%;
    bottom: 52px;
    transform: translateX(-50%);
    width: calc(100% - 120px);
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 1100px) {
    .roleta-stage {
        padding: 54px 42px 72px;
    }

    .roleta-logo {
        width: 220px;
        margin-bottom: 56px;
    }

    .roleta-section {
        margin-top: 56px;
    }

    .roleta-segment {
        width: 28%;
    }

    .roleta-segment-icon {
        width: 140px;
        height: 140px;
    }

    .roleta-segment span {
        font-size: 24px;
    }
}

@media (max-height: 1700px) {
    .roleta-header {
        padding-top: 0;
    }

    .roleta-logo {
        margin-bottom: 42px;
    }

    .roleta-title {
        width: min(360px, 72%);
        margin-bottom: 18px;
    }

    .roleta-subtitle {
        width: min(560px, 100%);
        font-size: 30px;
    }

    .roleta-section {
        margin-top: 40px;
    }

    .roleta-cta {
        margin-top: 34px;
    }

    .roleta-footer {
        bottom: 30px;
    }
}


/* CONCIERGE */

#screenConcierge {
    background:
        radial-gradient(circle at top, rgba(25, 64, 177, 0.22), transparent 32%),
        #020718;
}

.concierge-stage {
    position: relative;
    width: min(100vw, calc(100vh * 0.5625));
    min-height: 100vh;
    margin: 0 auto;
    padding: 56px 58px 48px;
    box-sizing: border-box;
    background:
        linear-gradient(180deg, rgba(2, 11, 36, 0.2), rgba(2, 11, 36, 0.75)),
        url(../img/bg-concierge.png) center bottom / cover no-repeat;
    overflow: hidden;
}

.concierge-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 18px;
}

.concierge-logo {
    display: block;
    width: 344px;
}

.concierge-title {
    display: block;
    font-size: 68px;
    font-weight: 300;
    letter-spacing: 16px;
    text-align: center;
    text-shadow:
        0 0 6px rgba(255,255,255,0.6),
        0 0 18px #38b6ff,
        0 0 45px rgba(63,158,251,0.6),
        0 0 90px rgba(63,158,251,0.3);
    color: #ffffff;
    margin: 80px 0 80px;
    padding: 0;
}

.concierge-screen {
    display: none;
}

.concierge-screen.is-active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concierge-copy {
    margin: 52px 0 44px;
}

.concierge-copy p {
    margin: 0 0 36px;
    font-size: 38px;
    font-weight: 300;
    text-align: center;
    line-height: 1.4;
}

.concierge-copy .concierge-lead {
    margin-bottom: 44px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
}

.concierge-copy .concierge-lead strong {
    font-size: 52px;
}

.concierge-start-button {
    box-shadow: 0 18px 28px rgba(63, 158, 251, 0.4);
}

.concierge-question-shell {
    width: min(100%, 700px);
    margin-top: 28px;
}

.concierge-progress {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    opacity: 0.65;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.concierge-question-title {
    margin: 0 0 36px;
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
}

.concierge-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.concierge-option {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 14px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: white;
    text-align: left;
    cursor: pointer;
    font: inherit;
    transition: background 0.15s ease;
    margin: 0 -14px;
}

.concierge-option:active {
    background: rgba(56, 182, 255, 0.07);
    transform: scale(0.988);
}

.concierge-option.is-selected {
    background: rgba(56, 182, 255, 0.06);
}

.concierge-option-marker {
    position: relative;
    width: 46px;
    height: 46px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    flex: 0 0 auto;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}

.concierge-option.is-selected .concierge-option-marker {
    border-color: rgba(93, 206, 255, 0.95);
}

.concierge-option-label {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 300;
}

.concierge-option.is-selected .concierge-option-marker::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 5px;
    background: linear-gradient(180deg, #65d5ff, #2678ff);
    box-shadow: 0 0 16px rgba(73, 188, 255, 0.85);
}

.concierge-option:focus-visible {
    outline: 2px solid rgba(93, 206, 255, 0.95);
    outline-offset: 4px;
    border-radius: 16px;
}

.concierge-result-copy {
    width: 100%;
}

.concierge-result-intro,
.concierge-legal {
    margin: 0;
    text-align: center;
    font-size: 40px;
    font-weight: 300;
}

.concierge-result-message {
    margin: 0;
    text-align: center;
    font-size: 28px;
    font-weight: 300;
}

.concierge-result-intro {
    margin-bottom: 24px;
}

.concierge-result-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.concierge-result-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: stretch;
    padding: 18px;
    border: 2px solid rgba(85, 173, 255, 0.3);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(8, 21, 57, 0.82), rgba(4, 12, 35, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 32px rgba(2, 10, 31, 0.5);
    position: relative;
    overflow: hidden;
}

.concierge-result-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(56, 182, 255, 0.6) 40%, rgba(56, 182, 255, 0.6) 60%, transparent 100%);
}

.concierge-result-media {
    min-height: 100%;
}

.concierge-result-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.concierge-result-media.is-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 182, 255, 0.18), rgba(32, 98, 172, 0.32));
    border: 1px solid rgba(56, 182, 255, 0.25);
    border-radius: 16px;
}

.concierge-result-media.is-placeholder::after {
    content: attr(data-initial);
    font-family: "Porto Roobert", sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: rgba(119, 209, 255, 0.85);
    text-shadow: 0 2px 16px rgba(56, 182, 255, 0.45);
    letter-spacing: 2px;
}

.concierge-result-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.concierge-result-restaurant-name,
.concierge-result-dish,
.concierge-result-description {
    margin: 0;
}

.concierge-result-restaurant-name {
    font-size: 44px;
    line-height: 1.0;
    font-weight: 700;
}

.concierge-result-dish-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

.concierge-result-dish {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 500;
    color: #77d1ff;
}

.concierge-result-price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #020818;
    background: #38b6ff;
    padding: 2px 14px;
    border-radius: 100px;
    line-height: 1.5;
}

.concierge-result-description {
    margin-top: 2px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 300;
    opacity: 0.92;
    text-align: left;
}

.concierge-result-message {
    margin-bottom: 22px;
}

.concierge-qr-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 380px;
    margin: 0 auto 48px;
    border: 3px solid rgba(56, 182, 255, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    box-sizing: border-box;
    box-shadow:
        0 0 14px  rgba(56, 182, 255, 0.65),
        0 0 40px  rgba(56, 182, 255, 0.25);
}

.concierge-qr-placeholder span {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    opacity: 0.85;
}

.concierge-legal {
    margin-top: 32px;
    font-size: 24px;
    line-height: 1.22;
    font-weight: 500;
}



/* ── Totem: anti-selecao, anti-callout ───────────────────────────────────── */

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

input, textarea {
    -webkit-user-select: text;
    user-select: text;
}


/* ── CPF Overlay ─────────────────────────────────────────────────────────── */

.cpf-overlay {
    position: absolute;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 5, 20, 0.88);
    backdrop-filter: blur(8px);
}

.cpf-overlay.is-hidden {
    display: none;
}

.cpf-modal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 64px 56px;
    border: 2px solid rgba(85, 173, 255, 0.3);
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(8, 21, 57, 0.95), rgba(4, 12, 35, 0.98));
    box-shadow: 0 32px 80px rgba(2, 10, 31, 0.7);
    width: min(580px, 90vw);
    box-sizing: border-box;
}

.cpf-modal-title {
    margin: 0;
    font-size: 44px;
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
}

.cpf-modal-title span {
    color: #38b6ff;
    font-weight: 700;
}

.cpf-input {
    width: 100%;
    padding: 24px 20px;
    border: 3px solid rgba(85, 173, 255, 0.45);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: "Porto Roobert", sans-serif;
    font-size: clamp(32px, 5.5vw, 48px);
    font-weight: 500;
    text-align: center;
    letter-spacing: 2px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    overflow: hidden;
    white-space: nowrap;
}

.cpf-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

.cpf-input:focus {
    border-color: rgba(56, 182, 255, 0.85);
    box-shadow: 0 0 24px rgba(56, 182, 255, 0.25);
}

.cpf-error {
    margin: 0;
    min-height: 36px;
    font-size: 28px;
    font-weight: 500;
    color: #38b6ff;
    text-align: center;
}



/* ── Modal de download do app Porto ──────────────────────────────────────── */

.app-modal {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    background: rgba(1, 5, 20, 0.92);
    backdrop-filter: blur(10px);
}

.app-modal.is-active {
    display: flex;
    animation: modal-backdrop-in 0.28s ease forwards;
}

@keyframes modal-backdrop-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes modal-box-in {
    from {
        opacity: 0;
        transform: scale(0.88) translateY(48px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.app-modal.is-active .app-modal-box {
    animation: modal-box-in 0.36s cubic-bezier(0.34, 1.25, 0.64, 1) forwards;
}

.app-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    cursor: pointer;
}

.app-modal-box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 96px 52px 52px;
    border: 2px solid rgba(85, 173, 255, 0.3);
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(8, 21, 57, 0.97), rgba(4, 12, 35, 0.99));
    box-shadow: 0 32px 80px rgba(2, 10, 31, 0.8);
    width: min(520px, 90vw);
}

.app-modal-title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.app-modal-title span {
    color: #38b6ff;
}

.app-modal-qr-wrap {
    width: 340px;
    height: 340px;
    padding: 18px;
    border-radius: 18px;
    border: 3px solid rgba(85, 173, 255, 0.25);
    background: #020818;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.app-modal-qr {
    width: 304px;
    height: 304px;
    display: block;
    border-radius: 0;
}

.app-modal-confirm {
    width: 100%;
    font-size: 46px;
}

.app-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.app-modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}


/* ── Concierge — botão confirmar multiselect ─────────────────────────────── */

.concierge-confirm-button {
    display: block;
    width: min(100%, 700px);
    margin-top: 32px;
    font-size: 38px;
    height: 120px;
    border-radius: 40px;
}

.concierge-confirm-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.concierge-loading {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    opacity: 0.8;
    margin: 80px 0;
}

/* ── Tela de loading (aguardando IA) ─────────────────────────────────────── */

.concierge-loading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 56px;
    min-height: 1400px;
}

.concierge-spinner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 10px solid rgba(56, 182, 255, 0.12);
    border-top-color: rgba(56, 182, 255, 1);
    border-right-color: rgba(56, 182, 255, 0.4);
    box-shadow:
        0 0 40px  rgba(56, 182, 255, 0.6),
        0 0 80px  rgba(56, 182, 255, 0.25),
        inset 0 0 24px rgba(56, 182, 255, 0.08);
    animation: spin 1.1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.concierge-loading-text {
    font-size: 38px;
    font-weight: 300;
    text-align: center;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}


/* ── Teclado virtual CPF ─────────────────────────────────────────────────── */

.cpf-keyboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    margin-top: 8px;
}

.cpf-key {
    height: 88px;
    border: 2px solid rgba(85, 173, 255, 0.25);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: "Porto Roobert", sans-serif;
    font-size: 38px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.12s, border-color 0.12s, transform 0.08s;
    -webkit-tap-highlight-color: transparent;
}

.cpf-key:active {
    background: rgba(56, 182, 255, 0.18);
    border-color: rgba(56, 182, 255, 0.6);
    transform: scale(0.95);
}

.cpf-key-clear {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.12);
}

.cpf-key-del {
    color: rgba(255, 255, 255, 0.75);
}


/* ══════════════════════════════════════════════════════════════════════════
   ANIMAÇÕES — transições de página, telas e micro-interações
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Transição entre sub-telas do concierge ─────────────────────────────── */

@keyframes screenFadeUp {
    from { opacity: 0; transform: translateY(44px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.concierge-screen.is-active {
    animation: screenFadeUp 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ── Cards de resultado: entrada em cascata ──────────────────────────────── */

@keyframes cardSlideIn {
    from { opacity: 0; transform: translateY(48px) scale(0.93); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.concierge-result-card {
    animation: cardSlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.concierge-result-card:nth-child(1) { animation-delay: 0.10s; }
.concierge-result-card:nth-child(2) { animation-delay: 0.22s; }
.concierge-result-card:nth-child(3) { animation-delay: 0.34s; }

/* ── Micro-interação: opções do quiz ─────────────────────────────────────── */

.concierge-option {
    transition: transform 0.15s ease, background 0.18s ease, border-color 0.15s ease;
}

.concierge-option:active {
    transform: scale(0.985);
}

/* ── Micro-interação: botão primário ─────────────────────────────────────── */

.btn-primary {
    transition: transform 0.15s ease, box-shadow 0.18s ease, opacity 0.15s ease;
}

.btn-primary:active {
    transform: scale(0.97);
    opacity: 0.9;
}

/* ── Entrada do loading spinner ──────────────────────────────────────────── */

@keyframes spinnerEnter {
    from { opacity: 0; transform: scale(0.65); }
    to   { opacity: 1; transform: scale(1); }
}

.concierge-spinner {
    animation: spin 1.1s linear infinite, spinnerEnter 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.concierge-loading-text {
    animation: screenFadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}


/* ══════════════════════════════════════════════════════════════════════════
   STAGGER POR TELA — todos os elementos animam na entrada
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Welcome ──────────────────────────────────────────────────────────────── */
#screenWelcome.is-active .inicio-hero {
    animation: cardSlideIn 0.80s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}
#screenWelcome.is-active .d-flex > *:nth-child(1) {
    animation: cardSlideIn 0.70s cubic-bezier(0.16, 1, 0.3, 1) 0.26s both;
}
#screenWelcome.is-active .d-flex > *:nth-child(2) {
    animation: cardSlideIn 0.70s cubic-bezier(0.16, 1, 0.3, 1) 0.40s both;
}

/* ── Roleta ───────────────────────────────────────────────────────────────── */
#screenRoleta.is-active .roleta-home {
    animation: cardSlideIn 0.50s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}
#screenRoleta.is-active .roleta-logo {
    animation: cardSlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}
#screenRoleta.is-active .roleta-title {
    animation: cardSlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}
#screenRoleta.is-active .roleta-subtitle {
    animation: cardSlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}
#screenRoleta.is-active .roleta-section {
    animation: cardSlideIn 0.80s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}
#screenRoleta.is-active .roleta-cta {
    animation: cardSlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

/* ── Concierge: header permanente ────────────────────────────────────────── */
#screenConcierge.is-active .roleta-home {
    animation: cardSlideIn 0.50s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}
#screenConcierge.is-active .concierge-logo {
    animation: cardSlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}
#screenConcierge.is-active .concierge-title {
    animation: cardSlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

/* ── Concierge intro ─────────────────────────────────────────────────────── */
#conciergeIntro.is-active .concierge-start-button {
    animation: cardSlideIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

/* ── Concierge quiz ──────────────────────────────────────────────────────── */
#conciergeQuiz.is-active .concierge-progress {
    animation: cardSlideIn 0.50s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}
#conciergeQuiz.is-active .concierge-question-title {
    animation: cardSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

/* ── Concierge resultado: stagger completo com QR ────────────────────────── */
#conciergeResult.is-active .concierge-result-intro {
    animation: cardSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}
#conciergeResult.is-active .concierge-result-message {
    animation: cardSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both;
}
#conciergeResult.is-active .concierge-qr-placeholder {
    animation: cardSlideIn 0.75s cubic-bezier(0.34, 1.2, 0.64, 1) 0.50s both;
}
#conciergeResult.is-active .concierge-legal {
    animation: cardSlideIn 0.50s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}

/* ── CPF overlay: modal escala ao abrir ──────────────────────────────────── */
.cpf-overlay:not(.is-hidden) .cpf-modal {
    animation: modal-box-in 0.40s cubic-bezier(0.34, 1.25, 0.64, 1) both;
}


/* ══════════════════════════════════════════════════════════════════════════
   PAINEL DE CONFIGURAÇÃO (P+C)
   ══════════════════════════════════════════════════════════════════════════ */

.config-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(2, 8, 24, 0.88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.config-panel.is-open {
    opacity: 1;
    pointer-events: all;
}

.config-panel-box {
    background: #0a1020;
    border: 1px solid rgba(56, 182, 255, 0.2);
    border-radius: 24px;
    width: min(760px, 90vw);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.94) translateY(24px);
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 0 80px rgba(56, 182, 255, 0.08), 0 40px 80px rgba(0,0,0,.6);
}

.config-panel.is-open .config-panel-box {
    transform: scale(1) translateY(0);
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.config-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 0;
    flex-shrink: 0;
}

.config-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #e2e8f0;
}

.config-panel-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.config-panel-close {
    appearance: none;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: #94a3b8;
    font-size: 16px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}
.config-panel-close:hover { background: rgba(255,255,255,.12); color: #e2e8f0 }

/* ── Tabs ────────────────────────────────────────────────────────────────── */
.config-tabs-row {
    display: flex;
    gap: 6px;
    padding: 16px 24px 0;
    flex-shrink: 0;
}

.cfg-tab {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.cfg-tab:hover  { background: rgba(255,255,255,.05); color: #94a3b8 }
.cfg-tab.active {
    background: rgba(56, 182, 255, 0.12);
    border-color: rgba(56, 182, 255, 0.35);
    color: #38b6ff;
}

/* ── Content ─────────────────────────────────────────────────────────────── */
.cfg-content {
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding: 16px 24px 24px;
    gap: 0;
    flex: 1;
}
.cfg-content.is-active { display: flex }

/* scrollbar */
.cfg-content::-webkit-scrollbar { width: 4px }
.cfg-content::-webkit-scrollbar-track { background: transparent }
.cfg-content::-webkit-scrollbar-thumb { background: rgba(56,182,255,.2); border-radius: 2px }

/* ── Brindes: stats row ──────────────────────────────────────────────────── */
.cfg-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
    padding: 8px 0 14px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 4px;
}
.cfg-stats-row strong { color: #38b6ff; font-size: 20px; font-weight: 800 }

/* ── Premio row ──────────────────────────────────────────────────────────── */
.cfg-premios-list { display: flex; flex-direction: column; gap: 2px }

.cfg-premio-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.cfg-premio-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 12px;
}

.cfg-premio-nome {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    flex: 1;
}

.cfg-toggle { position: relative; display: inline-block; width: 54px; height: 30px; flex-shrink: 0 }
.cfg-toggle input { opacity: 0; width: 0; height: 0 }
.cfg-slider {
    position: absolute; inset: 0;
    background: #1e2a3a;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
    touch-action: manipulation;
}
.cfg-slider:before {
    content: '';
    position: absolute;
    height: 20px; width: 20px;
    left: 4px; bottom: 4px;
    background: #fff;
    border-radius: 50%;
    transition: .2s;
}
.cfg-toggle input:checked + .cfg-slider { background: #38b6ff; border-color: #38b6ff }
.cfg-toggle input:checked + .cfg-slider:before { transform: translateX(24px) }

.cfg-premio-mid {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cfg-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cfg-field-lbl {
    font-size: 10px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}

.cfg-field-inp {
    background: #060c18;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    color: #e2e8f0;
    padding: 12px 10px;
    font-size: 18px;
    font-weight: 700;
    width: 110px;
    text-align: center;
    outline: none;
    transition: border-color .2s;
    -moz-appearance: textfield;
    touch-action: manipulation;
}
.cfg-field-inp::-webkit-outer-spin-button,
.cfg-field-inp::-webkit-inner-spin-button { -webkit-appearance: none }
.cfg-field-inp:focus { border-color: #38b6ff }

.cfg-btn-save {
    appearance: none;
    background: rgba(56, 182, 255, .1);
    border: 1px solid rgba(56, 182, 255, .3);
    border-radius: 8px;
    color: #38b6ff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    cursor: pointer;
    transition: background .15s;
    margin-top: 14px;
    align-self: flex-end;
    min-height: 48px;
    touch-action: manipulation;
}
.cfg-btn-save:hover { background: rgba(56, 182, 255, .18) }

/* ── Barra mini ──────────────────────────────────────────────────────────── */
.cfg-bar {
    height: 4px;
    background: #111a2b;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 4px;
}
.cfg-bar-fill { height: 4px; border-radius: 4px; transition: width .4s }
.cfg-bar-ok   { background: #38b6ff }
.cfg-bar-low  { background: #f59e0b }
.cfg-bar-zero { background: #ef4444 }

.cfg-bar-info { font-size: 11px; color: #475569 }

/* ── Loading ─────────────────────────────────────────────────────────────── */
.cfg-loading { color: #64748b; font-size: 14px; padding: 20px 0; text-align: center }

/* ── Ajustes ─────────────────────────────────────────────────────────────── */
.cfg-ajuste-group {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.cfg-ajuste-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cfg-ajuste-info { flex: 1 }

.cfg-ajuste-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 2px;
}

.cfg-ajuste-desc {
    display: block;
    font-size: 12px;
    color: #475569;
    line-height: 1.4;
}

.cfg-input-date {
    background: #060c18;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    color: #e2e8f0;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
    flex-shrink: 0;
    transition: border-color .2s;
    color-scheme: dark;
}
.cfg-input-date:focus { border-color: #38b6ff }

.cfg-range {
    width: 100%;
    margin-top: 12px;
    accent-color: #38b6ff;
    height: 4px;
    cursor: pointer;
}
