
/* =========================================================
   PERGUNTE
    RESPONSIVO
   Mobile First
========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {

    --bg: #08090d;
    --bg-soft: #101118;

    --card: rgba(20, 21, 30, 0.88);
    --card-mobile: rgba(17, 18, 26, 0.96);

    --white: #ffffff;
    --text: #f5f5f7;
    --muted: #9699a8;

    --purple: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-dark: #6d28d9;

    --orange: #fb923c;
    --green: #34d399;
    --red: #fb7185;

    --border: rgba(255,255,255,0.08);

    --radius: 22px;

    --shadow:
        0 30px 80px rgba(0,0,0,0.45);

    --mobile-padding: 16px;

}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;

    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;

    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;

    margin: 0;

    font-family: 'DM Sans', sans-serif;

    color: var(--text);

    background: var(--bg);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

textarea,
input {
    -webkit-appearance: none;
    appearance: none;
}

h1,
h2,
h3,
strong {
    font-family: 'Manrope', sans-serif;
}

a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   FUNDO
========================================================= */

.public-page {

    position: relative;

    min-height: 100vh;
    min-height: 100dvh;

    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124, 58, 237, 0.20),
            transparent 38%
        ),
        var(--bg);
}

.background-shape {

    position: fixed;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    opacity: .20;

    z-index: 0;
}

.shape-1 {

    background: #7c3aed;

    top: -250px;
    left: -220px;
}

.shape-2 {

    background: #2563eb;

    right: -300px;
    bottom: -300px;
}


/* =========================================================
   PÁGINA PÚBLICA
========================================================= */

.public-container {

    position: relative;

    z-index: 1;

    width: min(
        calc(100% - 32px),
        720px
    );

    min-height: 100vh;
    min-height: 100dvh;

    margin: 0 auto;

    padding:

        max(24px, env(safe-area-inset-top))
        0

        max(30px, env(safe-area-inset-bottom));

    display: flex;

    flex-direction: column;
}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    padding-top: 4px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.brand-icon {

    flex: 0 0 auto;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-dark)
        );

    color: white;

    font-family: 'Manrope', sans-serif;

    font-size: 20px;

    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(124,58,237,.35);
}


/* =========================================================
   CARD PRINCIPAL
========================================================= */

.question-card {

    width: 100%;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 26px;

    padding: 28px 20px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}


/* =========================================================
   STATUS AO VIVO
========================================================= */

.card-top {

    display: flex;

    justify-content: flex-start;

    margin-bottom: 22px;
}

.live-indicator {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #c4b5fd;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.3px;

    background: rgba(139,92,246,.10);

    border: 1px solid rgba(139,92,246,.20);

    padding: 8px 11px;

    border-radius: 999px;
}

.live-indicator span {

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #a78bfa;

    box-shadow:
        0 0 0 5px rgba(167,139,250,.10);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .45;
    }
}


/* =========================================================
   TÍTULO
========================================================= */

.question-card h1 {

    font-size: clamp(
        34px,
        10vw,
        52px
    );

    line-height: 1.02;

    letter-spacing: -1.8px;

    margin-bottom: 16px;

    word-break: normal;
}

.subtitle {

    color: var(--muted);

    font-size: 15px;

    line-height: 1.6;

    max-width: 560px;

    margin-bottom: 25px;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

#questionForm {

    display: block;

    width: 100%;
}

.textarea-wrapper {

    position: relative;

    width: 100%;
}

textarea {

    display: block;

    width: 100%;

    min-width: 0;

    min-height: 180px;

    resize: vertical;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 17px;

    color: var(--white);

    font-family: inherit;

    font-size: 16px;

    line-height: 1.55;

    padding: 17px 17px 42px;

    outline: none;

    transition:

        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;

    caret-color: var(--purple-light);
}

textarea::placeholder {

    color: #686b7b;

    opacity: 1;
}

textarea:focus {

    border-color:
        rgba(139,92,246,.65);

    background:
        rgba(255,255,255,.045);

    box-shadow:
        0 0 0 4px
        rgba(139,92,246,.10);
}


/* =========================================================
   CONTADOR
========================================================= */

.char-counter {

    position: absolute;

    right: 14px;
    bottom: 13px;

    color: #686b7b;

    font-size: 11px;

    pointer-events: none;

    user-select: none;
}


/* =========================================================
   BOTÃO ENVIAR
========================================================= */

.submit-button {

    display: flex !important;

    align-items: center;
    justify-content: center;

    gap: 11px;

    width: 100%;

    min-height: 58px;

    height: 58px;

    margin-top: 13px;

    padding:
        0 18px;

    border: 0;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #8b5cf6 0%,
            #6d28d9 100%
        );

    color: #ffffff;

    font-family: 'DM Sans', sans-serif;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    position: relative;

    z-index: 5;

    visibility: visible !important;

    opacity: 1;

    box-shadow:
        0 12px 30px
        rgba(109,40,217,.30);

    transition:

        transform .2s ease,
        box-shadow .2s ease,
        opacity .2s ease;
}

.submit-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 18px 35px
        rgba(109,40,217,.40);
}

.submit-button:active {

    transform: scale(.99);
}

.submit-button:disabled {

    opacity: .60;

    cursor: wait;

    transform: none;
}

.button-text {

    display: inline-block;

    color: #ffffff;
}

.button-arrow {

    display: inline-block;

    color: #ffffff;

    font-size: 22px;

    line-height: 1;

    transition:
        transform .2s ease;
}

.submit-button:hover .button-arrow {

    transform: translateX(4px);
}


/* =========================================================
   MENSAGEM
========================================================= */

.message {

    min-height: 22px;

    margin-top: 15px;

    text-align: center;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.4;
}

.message.success {

    color: var(--green);
}

.message.error {

    color: var(--red);
}


/* =========================================================
   AVISO ANÔNIMO
========================================================= */

.anonymous-note {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    color: #6f7280;

    font-size: 11px;

    line-height: 1.4;

    text-align: center;

    margin-top: 17px;
}

.lock-icon {

    color: #9ca3af;

    font-size: 13px;

    flex: 0 0 auto;
}


/* =========================================================
   FOOTER
========================================================= */

footer {

    margin-top: auto;

    padding-top: 24px;

    text-align: center;

    color: #555866;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   LOGIN
========================================================= */

.login-page {

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 100vh;
    min-height: 100dvh;

    padding:

        max(18px, env(safe-area-inset-top))
        16px
        max(18px, env(safe-area-inset-bottom));

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(124,58,237,.20),
            transparent 40%
        ),
        var(--bg);
}

.login-box {

    width: min(
        100%,
        430px
    );

    padding: 32px 22px;

    background: var(--card-mobile);

    border: 1px solid var(--border);

    border-radius: 24px;

    box-shadow: var(--shadow);

    text-align: center;
}

.login-logo {

    display: flex;

    justify-content: center;

    margin-bottom: 22px;
}

.login-box h1 {

    font-size: 27px;

    line-height: 1.1;

    margin-bottom: 9px;
}

.login-box > p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 26px;
}

.input-group {

    text-align: left;

    margin-bottom: 16px;
}

.input-group label {

    display: block;

    color: #b8bac5;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 7px;
}

.input-group input {

    display: block;

    width: 100%;

    height: 52px;

    background: rgba(255,255,255,.04);

    border: 1px solid var(--border);

    border-radius: 13px;

    color: white;

    padding: 0 15px;

    font-family: inherit;

    font-size: 16px;

    outline: none;

    transition: .2s;
}

.input-group input:focus {

    border-color: var(--purple);

    box-shadow:
        0 0 0 4px
        rgba(139,92,246,.08);
}

.login-button {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 53px;

    height: 53px;

    border: 0;

    border-radius: 13px;

    background: var(--purple);

    color: white;

    font-family: inherit;

    font-weight: 700;

    font-size: 15px;

    cursor: pointer;

    transition: .2s;

    margin-top: 5px;
}

.login-button:hover {

    background: var(--purple-dark);
}

.login-error {

    background:
        rgba(251,113,133,.10);

    border:
        1px solid
        rgba(251,113,133,.20);

    color: #fda4af;

    padding: 12px;

    border-radius: 10px;

    font-size: 13px;

    line-height: 1.4;

    margin-bottom: 20px;
}

.back-link {

    display: inline-block;

    color: #777b8a;

    text-decoration: none;

    font-size: 13px;

    margin-top: 23px;
}

.back-link:hover {

    color: white;
}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-page {

    min-height: 100vh;
    min-height: 100dvh;

    background:
        radial-gradient(
            circle at 70% 0%,
            rgba(124,58,237,.12),
            transparent 35%
        ),
        #08090d;
}


/* =========================================================
   HEADER DASHBOARD
========================================================= */

.dashboard-header {

    min-height: 70px;

    border-bottom:
        1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding:
        10px
        max(18px, 5%);

    background:
        rgba(8,9,13,.78);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    position: sticky;

    top: 0;

    z-index: 10;
}

.dashboard-brand {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;
}

.dashboard-brand .brand-icon {

    width: 34px;
    height: 34px;

    border-radius: 10px;

    font-size: 18px;

    flex: 0 0 auto;
}

.dashboard-brand strong {

    display: block;

    font-size: 12px;

    letter-spacing: 1px;
}

.dashboard-brand span {

    display: block;

    color: #707382;

    font-size: 9px;

    margin-top: 2px;
}

.header-right {

    display: flex;

    align-items: center;

    gap: 12px;
}

.logged-user {

    color: #9da0ad;

    font-size: 12px;
}

.logout {

    color: #c4c6cf;

    text-decoration: none;

    font-size: 12px;

    padding: 8px 11px;

    border: 1px solid var(--border);

    border-radius: 9px;

    transition: .2s;

    white-space: nowrap;
}

.logout:hover {

    background:
        rgba(255,255,255,.05);
}


/* =========================================================
   DASHBOARD CONTAINER
========================================================= */

.dashboard-container {

    width: min(
        1100px,
        calc(100% - 32px)
    );

    margin: auto;

    padding:
        34px
        0
        60px;
}


/* =========================================================
   TÍTULO DASHBOARD
========================================================= */

.dashboard-title {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 25px;

    margin-bottom: 30px;
}

.eyebrow {

    color: #a78bfa;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.dashboard-title h1 {

    font-size: clamp(
        30px,
        5vw,
        44px
    );

    line-height: 1.05;

    letter-spacing: -1.5px;

    margin:
        7px
        0
        10px;
}

.dashboard-title p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.5;
}

.open-public {

    white-space: nowrap;

    color: white;

    text-decoration: none;

    background:
        rgba(255,255,255,.05);

    border:
        1px solid var(--border);

    padding:
        12px
        16px;

    border-radius: 11px;

    font-size: 13px;

    transition: .2s;
}

.open-public:hover {

    background:
        rgba(255,255,255,.09);
}


/* =========================================================
   ESTATÍSTICAS
========================================================= */

.stats {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

    margin-bottom: 30px;
}

.stat-card {

    background:
        rgba(255,255,255,.035);

    border:
        1px solid var(--border);

    border-radius: 18px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 15px;
}

.stat-icon {

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    border-radius: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: 800;
}

.stat-icon.purple {

    color: #c4b5fd;

    background:
        rgba(139,92,246,.12);
}

.stat-icon.orange {

    color: #fdba74;

    background:
        rgba(251,146,60,.12);
}

.stat-card span {

    display: block;

    color: #737684;

    font-size: 11px;

    margin-bottom: 2px;
}

.stat-card strong {

    font-size: 23px;
}


/* =========================================================
   PERGUNTAS
========================================================= */

.questions-section {

    background:
        rgba(255,255,255,.025);

    border:
        1px solid var(--border);

    border-radius: 23px;

    overflow: hidden;
}

.section-header {

    padding:
        20px 22px;

    border-bottom:
        1px solid var(--border);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}

.section-header h2 {

    font-size: 16px;
}

.live-refresh {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #6f7280;

    font-size: 11px;
}

.live-refresh span {

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--green);
}


/* =========================================================
   ITEM PERGUNTA
========================================================= */

.question-item {

    display: grid;

    grid-template-columns:
        60px
        minmax(0, 1fr)
        auto;

    gap: 20px;

    align-items: center;

    padding: 24px 22px;

    border-bottom:
        1px solid var(--border);

    transition: .2s;
}

.question-item:last-child {

    border-bottom: 0;
}

.question-item:hover {

    background:
        rgba(255,255,255,.025);
}

.question-number {

    color: #696c79;

    font-size: 12px;

    font-weight: 700;
}

.question-content {

    min-width: 0;
}

.question-content p {

    color: #e7e7eb;

    font-size: 15px;

    line-height: 1.55;

    margin-bottom: 9px;

    overflow-wrap: anywhere;
}

.question-time {

    color: #626572;

    font-size: 11px;
}

.question-actions {

    text-align: right;

    min-width: 0;
}

.answer-button {

    border:
        1px solid
        rgba(139,92,246,.30);

    background:
        rgba(139,92,246,.08);

    color: #c4b5fd;

    border-radius: 9px;

    padding:
        9px 12px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition: .2s;
}

.answer-button:hover {

    background:
        rgba(139,92,246,.16);
}

.answered-badge {

    color: #6ee7b7;

    background:
        rgba(52,211,153,.08);

    border:
        1px solid
        rgba(52,211,153,.16);

    border-radius: 999px;

    padding:
        7px 10px;

    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;
}

.question-item.answered {

    opacity: .55;
}


/* =========================================================
   ESTADO VAZIO
========================================================= */

.empty-state {

    text-align: center;

    padding:
        70px
        20px;
}

.empty-icon {

    width: 58px;
    height: 58px;

    border-radius: 17px;

    background:
        rgba(139,92,246,.10);

    color: #a78bfa;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: 'Manrope', sans-serif;

    font-weight: 800;

    font-size: 24px;

    margin:
        0
        auto
        18px;
}

.empty-state h3 {

    font-size: 17px;

    margin-bottom: 7px;
}

.empty-state p {

    color: #6f7280;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 601px) {

    .public-container {

        padding-top: 45px;
    }

    .question-card {

        padding: 42px;
    }

    .question-card h1 {

        font-size: clamp(
            40px,
            6vw,
            52px
        );
    }

    textarea {

        min-height: 190px;

        padding:
            20px
            20px
            42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    body {

        width: 100%;

        overflow-x: hidden;
    }


    /* -----------------------------------------
       FUNDO
    ----------------------------------------- */

    .background-shape {

        width: 280px;
        height: 280px;

        filter: blur(90px);

        opacity: .14;
    }

    .shape-1 {

        top: -150px;
        left: -150px;
    }

    .shape-2 {

        right: -180px;
        bottom: -180px;
    }


    /* -----------------------------------------
       CONTAINER
    ----------------------------------------- */

    .public-container {

        width: calc(100% - 24px);

        padding-top:
            max(18px, env(safe-area-inset-top));

        padding-bottom:
            max(24px, env(safe-area-inset-bottom));
    }


    /* -----------------------------------------
       LOGO
    ----------------------------------------- */

    .brand {

        margin-bottom: 18px;

        font-size: 12px;
    }

    .brand-icon {

        width: 36px;
        height: 36px;

        border-radius: 11px;

        font-size: 19px;
    }


    /* -----------------------------------------
       CARD
    ----------------------------------------- */

    .question-card {

        padding:
            24px
            18px;

        border-radius: 22px;

        background:
            var(--card-mobile);

        box-shadow:
            0 22px 60px
            rgba(0,0,0,.38);
    }


    /* -----------------------------------------
       AO VIVO
    ----------------------------------------- */

    .card-top {

        margin-bottom: 20px;
    }

    .live-indicator {

        font-size: 9px;

        padding:
            7px
            10px;
    }


    /* -----------------------------------------
       TÍTULO
    ----------------------------------------- */

    .question-card h1 {

        font-size:
            clamp(
                32px,
                10vw,
                40px
            );

        line-height: 1.02;

        letter-spacing:
            -1.4px;

        margin-bottom: 14px;
    }

    .subtitle {

        font-size: 14px;

        line-height: 1.55;

        margin-bottom: 22px;
    }


    /* -----------------------------------------
       TEXTAREA
    ----------------------------------------- */

    textarea {

        min-height: 170px;

        max-height: 45vh;

        padding:
            16px
            16px
            40px;

        border-radius: 15px;

        font-size: 16px;

        line-height: 1.5;
    }


    /* -----------------------------------------
       BOTÃO
    ----------------------------------------- */

    .submit-button {

        min-height: 56px;

        height: 56px;

        margin-top: 12px;

        border-radius: 14px;

        font-size: 15px;

        box-shadow:
            0 10px 25px
            rgba(109,40,217,.28);
    }

    .submit-button:hover {

        transform: none;
    }

    .button-arrow {

        font-size: 21px;
    }


    /* -----------------------------------------
       MENSAGEM
    ----------------------------------------- */

    .message {

        min-height: 20px;

        margin-top: 13px;

        font-size: 12px;
    }


    /* -----------------------------------------
       AVISO
    ----------------------------------------- */

    .anonymous-note {

        margin-top: 15px;

        font-size: 10px;
    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    footer {

        padding:
            20px
            0
            4px;

        font-size: 10px;
    }


    /* -----------------------------------------
       DASHBOARD
    ----------------------------------------- */

    .dashboard-header {

        min-height: 64px;

        padding:
            8px 14px;
    }

    .dashboard-brand {

        gap: 8px;
    }

    .dashboard-brand .brand-icon {

        width: 32px;
        height: 32px;
    }

    .dashboard-brand span {

        display: none;
    }

    .logged-user {

        display: none;
    }

    .logout {

        padding:
            7px 10px;

        font-size: 11px;
    }

    .dashboard-container {

        width:
            calc(100% - 24px);

        padding:
            28px
            0
            45px;
    }


    /* -----------------------------------------
       TÍTULO DASHBOARD
    ----------------------------------------- */

    .dashboard-title {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 18px;

        margin-bottom: 25px;
    }

    .dashboard-title h1 {

        font-size:
            clamp(
                28px,
                9vw,
                38px
            );

        letter-spacing:
            -1.2px;
    }

    .dashboard-title p {

        font-size: 13px;
    }

    .open-public {

        width: 100%;

        text-align: center;

        padding:
            12px;
    }


    /* -----------------------------------------
       STATS
    ----------------------------------------- */

    .stats {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;

        margin-bottom: 22px;
    }

    .stat-card {

        padding: 15px;

        border-radius: 15px;

        gap: 10px;
    }

    .stat-icon {

        width: 37px;
        height: 37px;

        flex-basis: 37px;

        border-radius: 10px;
    }

    .stat-card span {

        font-size: 10px;
    }

    .stat-card strong {

        font-size: 20px;
    }


    /* -----------------------------------------
       SEÇÃO PERGUNTAS
    ----------------------------------------- */

    .questions-section {

        border-radius: 18px;
    }

    .section-header {

        padding:
            17px;

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 9px;
    }

    .section-header h2 {

        font-size: 15px;
    }


    /* -----------------------------------------
       PERGUNTA
    ----------------------------------------- */

    .question-item {

        grid-template-columns:
            1fr;

        gap: 11px;

        padding:
            18px 17px;
    }

    .question-number {

        font-size: 11px;
    }

    .question-content p {

        font-size: 14px;

        line-height: 1.55;
    }

    .question-actions {

        width: 100%;

        text-align:
            left;
    }

    .answer-button {

        width: 100%;

        min-height: 42px;

        padding:
            10px 12px;

        font-size: 11px;
    }

    .answered-badge {

        display: inline-flex;

        padding:
            7px 10px;
    }


    /* -----------------------------------------
       EMPTY STATE
    ----------------------------------------- */

    .empty-state {

        padding:
            55px
            18px;
    }

}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 360px) {

    .public-container {

        width: calc(100% - 18px);
    }

    .question-card {

        padding:
            22px
            15px;

        border-radius: 20px;
    }

    .question-card h1 {

        font-size: 30px;

        letter-spacing:
            -1.2px;
    }

    .subtitle {

        font-size: 13px;
    }

    textarea {

        min-height: 155px;
    }

    .submit-button {

        height: 54px;

        min-height: 54px;
    }

    .anonymous-note {

        font-size: 9px;
    }

    .stats {

        gap: 8px;
    }

    .stat-card {

        padding:
            13px 11px;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (
    max-height: 600px
) and (
    orientation: landscape
) {

    .public-container {

        padding-top: 14px;
    }

    .brand {

        margin-bottom: 12px;
    }

    .question-card {

        padding:
            20px;
    }

    .card-top {

        margin-bottom: 12px;
    }

    .question-card h1 {

        font-size: 30px;

        margin-bottom: 10px;
    }

    .subtitle {

        margin-bottom: 15px;
    }

    textarea {

        min-height: 120px;
    }

    footer {

        display: none;
    }
}


/* =========================================================
   ACESSIBILIDADE / TOUCH
========================================================= */

@media (hover: none) {

    .submit-button:hover {

        transform: none;

        box-shadow:
            0 12px 30px
            rgba(109,40,217,.30);
    }

    .answer-button:hover {

        background:
            rgba(139,92,246,.08);
    }

    .logout:hover {

        background: transparent;
    }

    .open-public:hover {

        background:
            rgba(255,255,255,.05);
    }
}


/* =========================================================
   REDUZIR ANIMAÇÕES
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}