/* =============================================
   LP Lançamento PNAE 2026 — relatório final + live 26/08
   Prefixo: .pnl
   ============================================= */

.pnl {
    --pnl-primary: #083FCF;
    --pnl-deep: #071747;
    --pnl-secondary: #FC7D55;
    --pnl-tertiary: #B073FF;
    --pnl-text: #1F2937;
    --pnl-text-light: #6B7280;
    --pnl-border: #E5E7EB;
    --pnl-surface: #F8FAFC;
    --pnl-soft-blue: #DDE7FF;
    --pnl-heading: 'Outfit', sans-serif;
    --pnl-body: 'Nunito', sans-serif;

    background: #ffffff;
    color: var(--pnl-text);
    font-family: var(--pnl-body);
    line-height: 1.6;
}

.pnl *,
.pnl *::before,
.pnl *::after {
    box-sizing: border-box;
}

:where(.pnl) h1,
:where(.pnl) h2,
:where(.pnl) h3,
:where(.pnl) h4 {
    margin: 0;
    font-family: var(--pnl-heading);
    line-height: 1.15;
}

:where(.pnl) p {
    margin: 0;
}

:where(.pnl) ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pnl-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pnl-eyebrow {
    display: inline-block;
    color: var(--pnl-secondary);
    font-family: var(--pnl-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pnl-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Botões ---------- */
.pnl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--pnl-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.pnl-btn svg {
    flex-shrink: 0;
}

.pnl-btn--cta {
    min-height: 56px;
    padding: 0 1.9rem;
    color: #ffffff;
    background: var(--pnl-secondary);
    box-shadow: 0 10px 26px rgba(252, 125, 85, 0.42);
}

.pnl-btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(252, 125, 85, 0.5);
}

.pnl-btn--cta:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

.pnl-btn--full {
    width: 100%;
}

/* ---------- Countdown fixo ---------- */
.pnl-countdown {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, var(--pnl-primary) 0%, var(--pnl-tertiary) 100%);
    box-shadow: 0 2px 16px rgba(8, 63, 207, 0.35);
}

.pnl-countdown__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem 1.4rem;
    max-width: 1160px;
    margin: 0 auto;
}

.pnl-countdown__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-family: var(--pnl-heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.pnl-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FC7D55;
    box-shadow: 0 0 0 0 rgba(252, 125, 85, 0.75);
    animation: pnl-pulse 1.8s infinite;
}

@keyframes pnl-pulse {
    70% { box-shadow: 0 0 0 10px rgba(252, 125, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(252, 125, 85, 0); }
}

.pnl-countdown__blocks {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pnl-countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
    padding: 0.3rem 0.45rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
}

.pnl-countdown__num {
    color: #ffffff;
    font-family: var(--pnl-heading);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.pnl-countdown__unit {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pnl-countdown__sep {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--pnl-heading);
    font-size: 1.1rem;
    font-weight: 800;
}

.pnl-countdown__cta {
    min-height: 40px;
    padding: 0 1.2rem;
    border: 0;
    border-radius: 999px;
    color: var(--pnl-primary);
    background: #ffffff;
    cursor: pointer;
    font-family: var(--pnl-heading);
    font-size: 0.85rem;
    font-weight: 800;
    transition: transform 0.2s ease;
}

.pnl-countdown__cta:hover {
    transform: translateY(-1px);
}

.pnl-countdown.is-ended .pnl-countdown__blocks,
.pnl-countdown.is-ended .pnl-countdown__sep {
    display: none;
}

/* ---------- Hero ---------- */
.pnl-hero {
    position: relative;
    padding: 7rem 0 6.5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 16%, rgba(176, 115, 255, 0.3) 0%, transparent 32%),
        radial-gradient(circle at 86% 78%, rgba(252, 125, 85, 0.24) 0%, transparent 36%),
        linear-gradient(135deg, var(--pnl-deep) 0%, var(--pnl-primary) 56%, #5b55df 100%);
}

.pnl-hero__dots {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.pnl-hero__map {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(88%, 760px);
    opacity: 0.13;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
}

.pnl-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 6rem;
}

.pnl-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
}

.pnl-logos {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.pnl-logos__pnae {
    width: min(260px, 60vw);
    height: auto;
    display: block;
}

.pnl-logos__divider {
    display: block;
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.28);
}

.pnl-logos__lumni {
    height: 30px;
    width: auto;
    display: block;
    opacity: 0.92;
}

.pnl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    font-family: var(--pnl-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pnl-badge svg {
    color: var(--pnl-secondary);
}

.pnl-hero__title {
    max-width: 21ch;
    margin-block: -0.1em;
    color: #ffffff;
    font-size: clamp(2.1rem, 4.4vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.16;
}

.pnl-hero__title span {
    color: var(--pnl-secondary);
}

.pnl-hero__subtitle {
    max-width: 38rem;
    margin-block: -0.4em;
    color: var(--pnl-soft-blue);
    font-size: 1.08rem;
    line-height: 1.8;
}

.pnl-hero__subtitle strong {
    color: #ffffff;
    font-weight: 800;
}

.pnl-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
}

.pnl-hero__note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(221, 231, 255, 0.78);
    font-size: 0.88rem;
}

/* Card do evento */
.pnl-event-card {
    padding: 2.6rem 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pnl-event-card__title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 2.15rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}

.pnl-event-card__title svg {
    color: var(--pnl-secondary);
}

.pnl-event-meta {
    display: flex;
    flex-direction: column;
    gap: 2.15rem;
    margin-bottom: 2.15rem;
}

.pnl-event-meta li {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.pnl-event-meta__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--pnl-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.pnl-event-meta strong {
    display: block;
    color: #ffffff;
    font-family: var(--pnl-heading);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.3;
}

.pnl-event-meta span {
    color: rgba(221, 231, 255, 0.8);
    font-size: 0.84rem;
}

/* ---------- Seções claras ---------- */
.pnl-section {
    padding: 5.5rem 0;
}

.pnl-section--white {
    background: #ffffff;
    border-bottom: 1px solid var(--pnl-border);
}

.pnl-section--soft {
    background: var(--pnl-surface);
}

.pnl-section__header {
    max-width: 46rem;
    margin-bottom: 3rem;
}

.pnl-section__header--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.pnl-section__header h2 {
    margin: 0.75rem 0 1rem;
    color: var(--pnl-primary);
    font-size: clamp(1.75rem, 3.4vw, 2.35rem);
    font-weight: 800;
    line-height: 1.18;
}

.pnl-section__header p {
    color: var(--pnl-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ---------- Autoridade ---------- */
.pnl-authority {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pnl-authority__card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border: 1px solid var(--pnl-border);
    border-radius: 18px;
    background: var(--pnl-surface);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pnl-authority__card:hover {
    transform: translateY(-4px);
    border-color: var(--pnl-secondary);
    box-shadow: 0 18px 36px rgba(8, 63, 207, 0.1);
}

.pnl-authority__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    color: var(--pnl-primary);
    background: var(--pnl-soft-blue);
}

.pnl-authority__icon--warm {
    color: var(--pnl-secondary);
    background: #FFE4DC;
}

.pnl-authority__icon--violet {
    color: var(--pnl-tertiary);
    background: #EFE2FF;
}

.pnl-authority__card h3 {
    margin-bottom: 0.6rem;
    color: var(--pnl-text);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.pnl-authority__card p {
    color: var(--pnl-text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ---------- Propósito: captação e marketing ---------- */
.pnl-purpose {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pnl-purpose__card {
    position: relative;
    min-height: 290px;
    padding: 2.2rem;
    overflow: hidden;
    border-radius: 22px;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(8, 63, 207, 0.14);
}

.pnl-purpose__card--captacao {
    background: linear-gradient(135deg, #2443df 0%, #4837d8 100%);
}

.pnl-purpose__card--marketing {
    background: linear-gradient(135deg, #7c3aed 0%, #a95cff 100%);
}

.pnl-purpose__eyebrow {
    display: inline-flex;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--pnl-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pnl-purpose__card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 800;
}

.pnl-purpose__card > p {
    max-width: 32rem;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.pnl-purpose__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pnl-purpose__list li {
    padding: 0.42rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.84rem;
    font-weight: 600;
}

/* ---------- Tópicos do relatório ---------- */
.pnl-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.pnl-topic {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.7rem;
    border: 1px solid var(--pnl-border);
    border-radius: 18px;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pnl-topic:hover {
    transform: translateY(-3px);
    border-color: var(--pnl-primary);
    box-shadow: 0 18px 36px rgba(8, 63, 207, 0.1);
}

.pnl-topic__num {
    flex-shrink: 0;
    color: rgba(8, 63, 207, 0.28);
    font-family: var(--pnl-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.pnl-topic h3 {
    margin-bottom: 0.5rem;
    color: var(--pnl-text);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
}

.pnl-topic p {
    color: var(--pnl-text-light);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ---------- Parciais ---------- */
.pnl-section--parciais {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(176, 115, 255, 0.28) 0%, transparent 38%),
        linear-gradient(135deg, var(--pnl-deep) 0%, #1a2a86 100%);
}

.pnl-section--parciais .pnl-section__header h2 {
    color: #ffffff;
}

.pnl-section--parciais .pnl-section__header p {
    color: var(--pnl-soft-blue);
}

.pnl-parciais {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pnl-parcial {
    padding: 2rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pnl-parcial__num {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--pnl-secondary);
    font-family: var(--pnl-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.pnl-parcial__msg {
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-family: var(--pnl-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.pnl-parcial__ctx {
    color: rgba(221, 231, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.6;
}

.pnl-section__cta {
    margin-top: 3rem;
    text-align: center;
}

/* ---------- Sorteio ---------- */
.pnl-raffle {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--pnl-border);
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(8, 63, 207, 0.1);
}

.pnl-raffle__prize {
    position: relative;
    height: 100%;
    padding: 3rem 2.6rem;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(252, 125, 85, 0.32) 0%, transparent 42%),
        linear-gradient(140deg, var(--pnl-deep) 0%, var(--pnl-primary) 100%);
}

.pnl-raffle__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.4rem;
    padding: 0.5rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-family: var(--pnl-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pnl-raffle__prize h2 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(1.6rem, 3.2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.18;
}

.pnl-raffle__prize h2 span {
    color: var(--pnl-secondary);
}

.pnl-raffle__prize p {
    color: var(--pnl-soft-blue);
    font-size: 1rem;
    line-height: 1.7;
}

.pnl-raffle__rules {
    height: 100%;
    padding: 3rem 2.6rem;
    background: #ffffff;
}

.pnl-raffle__rules-title {
    margin-bottom: 1.6rem;
    color: var(--pnl-primary);
    font-size: 1.15rem;
    font-weight: 800;
}

.pnl-raffle__list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.pnl-raffle__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pnl-raffle__step {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--pnl-primary);
    background: var(--pnl-soft-blue);
    font-family: var(--pnl-heading);
    font-size: 0.82rem;
    font-weight: 800;
}

.pnl-raffle__list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--pnl-text);
    font-family: var(--pnl-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

.pnl-raffle__list span:not(.pnl-raffle__step) {
    display: block;
    color: var(--pnl-text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.pnl-raffle__note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: var(--pnl-surface);
    color: var(--pnl-text-light);
    font-size: 0.86rem;
    line-height: 1.55;
}

.pnl-raffle__note svg {
    flex-shrink: 0;
    margin-top: 0.18rem;
    color: var(--pnl-primary);
}

/* ---------- Apoiadores ---------- */
.pnl-supporters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem 3.5rem;
}

.pnl-supporters img {
    max-width: 140px;
    max-height: 52px;
    width: auto;
    height: auto;
    filter: grayscale(1);
    opacity: 0.62;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.pnl-supporters img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ---------- Formulário ---------- */
.pnl-form-section {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(252, 125, 85, 0.18), transparent 30%),
        linear-gradient(145deg, var(--pnl-deep) 0%, var(--pnl-primary) 58%, #5736c7 100%);
}

.pnl-form-section__map {
    position: absolute;
    top: 50%;
    right: -8%;
    width: min(60%, 560px);
    opacity: 0.08;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.pnl-form-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 3.5rem;
}

.pnl-form-pitch h2 {
    margin: 0.75rem 0 1rem;
    color: #ffffff;
    font-size: clamp(1.75rem, 3.4vw, 2.3rem);
    font-weight: 800;
}

.pnl-form-pitch h2 span {
    color: var(--pnl-secondary);
}

.pnl-form-pitch > p {
    margin-bottom: 2rem;
    color: var(--pnl-soft-blue);
    font-size: 1.05rem;
    line-height: 1.7;
}

.pnl-form-pitch ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pnl-form-pitch li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

.pnl-form-pitch li svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--pnl-secondary);
}

.pnl-form-card {
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pnl-form-card__title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
}

.pnl-form-card__subtitle {
    margin: 0.4rem 0 1.6rem;
    color: rgba(221, 231, 255, 0.8);
    font-size: 0.92rem;
}

.pnl-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pnl-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pnl-field--wide {
    grid-column: 1 / -1;
}

.pnl-field label {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 800;
}

.pnl-field label span {
    color: #ffb394;
}

.pnl-field input,
.pnl-field select {
    width: 100%;
    height: 50px;
    padding: 0 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    font-family: var(--pnl-body);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.pnl-field select {
    padding-right: 2.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.pnl-field select option {
    color: #ffffff;
    background: #26318f;
}

.pnl-field input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.pnl-field input:focus,
.pnl-field select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.pnl-invalid {
    border-color: #ff8a8a !important;
    box-shadow: 0 0 0 3px rgba(255, 138, 138, 0.16) !important;
}

.pnl-error {
    color: #ffd0d0;
    font-size: 0.78rem;
}

.pnl-form-card .pnl-btn--cta {
    margin-top: 1.4rem;
}

.pnl-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    text-align: center;
}

.pnl-disclaimer svg {
    flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.pnl-faq {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 46rem;
    margin: 0 auto;
}

.pnl-faq-item {
    overflow: hidden;
    border: 1px solid var(--pnl-border);
    border-radius: 16px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pnl-faq-item.is-open {
    border-color: var(--pnl-primary);
    box-shadow: 0 14px 30px rgba(8, 63, 207, 0.09);
}

.pnl-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.4rem;
    border: 0;
    background: none;
    color: var(--pnl-text);
    cursor: pointer;
    font-family: var(--pnl-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
}

.pnl-faq-q::after {
    content: '';
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2.2px solid var(--pnl-primary);
    border-bottom: 2.2px solid var(--pnl-primary);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.25s ease;
}

.pnl-faq-item.is-open .pnl-faq-q::after {
    transform: rotate(225deg) translate(-2px, -2px);
}

.pnl-faq-a {
    display: none;
    padding: 0 1.4rem 1.3rem;
    color: var(--pnl-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.pnl-faq-item.is-open .pnl-faq-a {
    display: block;
}

.pnl-faq-a strong {
    color: var(--pnl-text);
}

/* ---------- Sticky mobile + topo ---------- */
.pnl-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 998;
    display: none;
    padding: 0.7rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, var(--pnl-deep) 0%, var(--pnl-primary) 100%);
    box-shadow: 0 -6px 24px rgba(7, 23, 71, 0.28);
    transform: translateY(110%);
    transition: transform 0.28s ease;
}

.pnl-sticky.is-visible {
    transform: translateY(0);
}

.pnl-sticky__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pnl-sticky__text {
    color: #ffffff;
    font-family: var(--pnl-heading);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
}

.pnl-sticky__text span {
    display: block;
    color: rgba(221, 231, 255, 0.82);
    font-family: var(--pnl-body);
    font-size: 0.76rem;
    font-weight: 600;
}

.pnl-sticky__btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 0 1.25rem;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--pnl-secondary);
    cursor: pointer;
    font-family: var(--pnl-heading);
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
}

.pnl-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.5rem;
    z-index: 997;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--pnl-primary);
    box-shadow: 0 10px 26px rgba(8, 63, 207, 0.35);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.pnl-top.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pnl-top[hidden] {
    display: none;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
    .pnl-authority {
        grid-template-columns: repeat(2, 1fr);
    }

    .pnl-hero__grid {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .pnl-hero {
        padding: 4rem 0 4.5rem;
    }

    .pnl-hero__grid,
    .pnl-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pnl-hero__title {
        max-width: none;
    }

    .pnl-purpose,
    .pnl-topics,
    .pnl-raffle {
        grid-template-columns: 1fr;
    }

    .pnl-parciais {
        grid-template-columns: 1fr;
    }

    .pnl-section {
        padding: 4rem 0;
    }

    .pnl-form-section__map {
        display: none;
    }
}

@media (max-width: 768px) {
    .pnl-sticky {
        display: block;
    }

    .pnl-top {
        bottom: 5.5rem;
    }

    .pnl-countdown__label {
        width: 100%;
        justify-content: center;
        font-size: 0.82rem;
    }

    .pnl-countdown__cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .pnl-container {
        padding: 0 1.15rem;
    }

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

    .pnl-hero__actions,
    .pnl-hero__actions .pnl-btn {
        width: 100%;
    }

    .pnl-event-card,
    .pnl-form-card {
        padding: 1.5rem;
    }

    .pnl-purpose__card {
        min-height: 0;
        padding: 1.7rem;
    }

    .pnl-raffle__prize,
    .pnl-raffle__rules {
        padding: 2rem 1.5rem;
    }

    .pnl-raffle .pnl-btn--cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pnl *,
    .pnl-dot {
        animation: none !important;
        transition: none !important;
    }
}
