/* =========================================================
   TROFÉU ESTRELAS — PÁGINA INDEPENDENTE
   Visual inspirado na identidade do site principal:
   fundo escuro + dourado + Sora + Inter + cards premium.
   ========================================================= */

:root {
    --bg: #08090b;
    --bg-soft: #0d0f12;
    --card: #171a1f;
    --card-2: #111419;
    --text: #f4f5f7;
    --muted: #aeb5c0;
    --muted-2: #7f8997;
    --gold: #d4af37;
    --gold-light: #f2d36f;
    --gold-soft: rgba(212,175,55,.10);
    --line: rgba(255,255,255,.10);
    --line-soft: rgba(255,255,255,.065);
    --shadow: 0 25px 70px rgba(0,0,0,.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input,
select {
    font: inherit;
}

button {
    -webkit-tap-highlight-color: transparent;
}

.page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(
            900px 520px at 50% -100px,
            rgba(212,175,55,.09),
            transparent 68%
        ),
        var(--bg);
}


/* =========================================================
   CONTAINER
   ========================================================= */

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


/* =========================================================
   VÍDEO
   ========================================================= */

/* =========================================================
   VÍDEO
   ========================================================= */

.video-section {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0 35px;
    background:
        radial-gradient(
            700px 400px at 50% 30%,
            rgba(212,175,55,.045),
            transparent 70%
        );
}

.video-container {
    position: relative;
    width: fit-content;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    overflow: hidden;

    padding: 3px;
    border: 0;
    border-radius: 24px;

    background: linear-gradient(
        135deg,
        #8a6a16 0%,
        #f7d774 25%,
        #d4af37 50%,
        #fff1a8 72%,
        #9b741c 100%
    );

    box-shadow:
        0 25px 70px rgba(0,0,0,.55),
        0 0 28px rgba(212,175,55,.22),
        0 0 55px rgba(212,175,55,.08);
}

.video-container::after {
    content: "";
    position: absolute;
    inset: 3px;
    z-index: 2;
    pointer-events: none;
    border-radius: 21px;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.01),
            transparent 55%,
            rgba(0,0,0,.22)
        );
}

.winner-video {
    display: block;

    width: auto;
    height: min(68vh, 700px);

    max-width: calc(100vw - 38px);
    max-height: 68vh;

    aspect-ratio: 9 / 16;

    object-fit: cover;

    margin: 0;

    border: 0;
    border-radius: 21px;

    background: #000;
}

.sound-button {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: 18px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(8,9,11,.76);
    backdrop-filter: blur(12px);

    color: #fff;
    cursor: pointer;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.sound-button:hover {
    transform: translateY(-2px);
    border-color: rgba(212,175,55,.65);
    background: rgba(8,9,11,.92);
}

.sound-button span {
    font-size: 18px;
}

.video-loading {
    position: absolute;
    z-index: 8;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.22);
}

.video-loading.visible {
    display: flex;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255,255,255,.18);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.content-section {
    display: none;
    padding: 40px 0 100px;

    background:
        radial-gradient(
            850px 450px at 50% 0,
            rgba(212,175,55,.07),
            transparent 70%
        );

    animation: reveal .8s ease both;
}

.content-section.visible {
    display: block;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   HEADER
   ========================================================= */

.main-header {
    max-width: 850px;
    margin: 0 auto 52px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 15px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.eyebrow span {
    font-size: 13px;
}

.main-header h1 {
    margin: 0;

    font-family: Sora, Inter, Arial, sans-serif;

    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -.045em;

    font-weight: 800;
}

.main-header h1 span {
    color: var(--gold-light);
}

.main-header p {
    max-width: 720px;
    margin: 20px auto 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   INFO
   ========================================================= */

.info-card {
    position: relative;

    margin-bottom: 34px;
    padding: 30px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(28,32,38,.98),
            rgba(15,18,23,.98)
        );

    box-shadow: var(--shadow);
}

.info-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,.13),
            transparent 68%
        );

    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.info-item {
    padding: 8px 28px;

    border-right: 1px solid var(--line-soft);
}

.info-item:first-child {
    padding-left: 0;
}

.info-item:last-child {
    padding-right: 0;
    border-right: 0;
}

.info-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            #b98922
        );

    color: #17120a;

    font-size: 20px;
    font-weight: 900;

    box-shadow:
        0 10px 28px rgba(212,175,55,.16);
}

.info-item h2 {
    margin: 0 0 8px;

    font-size: 18px;
    line-height: 1.3;

    font-weight: 750;
}

.info-item p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.form-card {
    padding: 38px;

    border: 1px solid var(--line);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(27,31,37,.99),
            rgba(15,18,23,.99)
        );

    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 30px;
}

.form-header .eyebrow {
    margin-bottom: 8px;
}

.form-header h2 {
    margin: 0 0 10px;

    font-family: Sora, Inter, Arial, sans-serif;

    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -.035em;

    font-weight: 800;
}

.form-header h2 span {
    color: var(--gold-light);
}

.form-header p {
    max-width: 720px;

    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CAMPOS
   ========================================================= */

.field {
    margin-bottom: 22px;
}

.field label,
.categories-heading label {
    display: block;

    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 800;
}

.field input,
.field select {
    width: 100%;
    min-height: 52px;

    padding: 13px 15px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 12px;

    outline: none;

    background: rgba(255,255,255,.045);

    color: #fff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.field input::placeholder {
    color: rgba(255,255,255,.40);
}

.field input:focus,
.field select:focus {
    border-color: rgba(212,175,55,.75);

    background: rgba(255,255,255,.055);

    box-shadow:
        0 0 0 3px rgba(212,175,55,.08);
}

.field select option {
    background: #20242a;
    color: #fff;
}

.categories-heading {
    margin: 3px 0 16px;
}

.categories-heading label {
    margin-bottom: 3px;
}

.categories-heading small {
    color: var(--muted-2);
    font-size: 12px;
}


/* =========================================================
   CATEGORIAS
   ========================================================= */

.category-card {
    margin-bottom: 14px;
    padding: 21px;

    border: 1px solid var(--line-soft);
    border-radius: 17px;

    background: rgba(255,255,255,.022);

    animation: cardIn .35s ease both;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 750;
}

.category-number {
    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 32px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            #b98922
        );

    color: #17120a;

    font-size: 12px;
    font-weight: 900;
}

.remove-category {
    min-height: 34px;

    padding: 7px 11px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 9px;

    background: rgba(255,255,255,.035);

    color: #aeb5c0;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}

.remove-category:hover {
    color: #fff;

    border-color: rgba(255,90,90,.42);

    background: rgba(255,90,90,.07);
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
}

.fields-grid .full {
    grid-column: 1 / -1;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.add-category {
    width: 100%;
    min-height: 50px;

    margin-top: 3px;

    border: 1px dashed rgba(212,175,55,.45);
    border-radius: 12px;

    background: rgba(212,175,55,.045);

    color: var(--gold-light);

    font-size: 13px;
    font-weight: 750;

    cursor: pointer;

    transition: .25s ease;
}

.add-category strong {
    margin-right: 6px;

    font-size: 19px;
    line-height: 0;
}

.add-category:hover {
    color: #fff;

    border-color: rgba(212,175,55,.85);

    background: rgba(212,175,55,.09);
}

.submit-button {
    width: 100%;
    min-height: 58px;

    margin-top: 22px;
    padding: 14px 18px;

    border: 0;
    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f4da7f
        );

    color: #17130a;

    font-size: 15px;
    font-weight: 850;

    cursor: pointer;

    box-shadow:
        0 12px 35px rgba(212,175,55,.15);

    transition:
        transform .25s ease,
        filter .25s ease,
        box-shadow .25s ease;
}

.submit-button:hover {
    transform: translateY(-2px);

    filter: brightness(1.04);

    box-shadow:
        0 16px 40px rgba(212,175,55,.20);
}

.submit-button span {
    display: inline-flex;

    margin-right: 8px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
}

.form-note {
    margin: 12px auto 0;

    max-width: 620px;

    text-align: center;

    color: var(--muted-2);

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   RODAPÉ
   ========================================================= */

.bottom-note {
    padding-top: 35px;

    text-align: center;

    color: var(--muted-2);

    font-size: 11px;
}

.bottom-note span {
    color: var(--gold);
    margin-right: 5px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .container {
        width: min(100% - 20px, 1080px);
    }

    .video-section {
        min-height: auto;
        padding: 10px 0 30px;
    }

    .video-container {
        width: fit-content;
        max-width: calc(100vw - 10px);
        margin: 0 auto;
        padding: 2px;
        border-radius: 18px;
    }

    .video-container::after {
        inset: 2px;
        border-radius: 16px;
    }

    .winner-video {
        width: auto;
        height: auto;
        max-width: calc(100vw - 14px);
        max-height: none;
        aspect-ratio: 9 / 16;
        object-fit: cover;
        border-radius: 16px;
    }

    .sound-button {
        right: 10px;
        bottom: 10px;
        width: 43px;
        height: 43px;
    }

    .content-section {
        padding: 20px 0 70px;
    }

    .main-header {
        margin-bottom: 30px;
    }

    .main-header h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .main-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .info-card {
        padding: 21px;
        border-radius: 18px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 21px;
    }

    .info-item,
    .info-item:first-child,
    .info-item:last-child {
        padding: 0 0 21px;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .info-item:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .form-card {
        padding: 21px;
        border-radius: 18px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .fields-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fields-grid .full {
        grid-column: auto;
    }

    .category-card {
        padding: 17px;
    }

    .category-top {
        align-items: flex-start;
    }

    .catego/* =========================================================
   TELAS DESKTOP COM ALTURA REDUZIDA
   ========================================================= */

@media (min-width: 768px) and (max-height: 800px) {
    .video-section {
        padding-top: 10px;
        padding-bottom: 25px;
    }

    .winner-video {
        height: min(62vh, 620px);
        max-height: 62vh;
    }
}

ry-title {
        line-height: 1.4;
    }

    .submit-button {
        min-height: 58px;
        line-height: 1.35;
    }

}

/* =========================================================
   TELAS MUITO PEQUENAS
   ========================================================= */

@media (max-width: 380px) {

    .main-header h1 {
        font-size: 1.9rem;
    }

    .form-card {
        padding: 17px;
    }

    .info-card {
        padding: 17px;
    }

}

.top-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 20px 14px;
    position: relative;
    z-index: 10;
}

.top-logo img {
    width: 190px;
    max-width: 65%;
    height: auto;
    display: block;
}

@media (max-width: 600px) {
    .top-logo {
        padding: 18px 15px 10px;
    }

    .top-logo img {
        width: 155px;
        max-width: 60%;
    }
}