:root {
    --color-primary: #5A2D91;
    --color-primary-dark: #40206B;
    --color-primary-light: #7C49B8;
    --color-accent-yellow: #FFD84D;
    --color-accent-yellow-dark: #F0C220;
    --color-accent-pink: #FF5FA2;
    --color-accent-pink-light: #FF8FBE;
    --color-accent-blue: #4D96FF;
    --color-accent-green: #25D366;
    --color-accent-green-dark: #1EA855;

    --color-bg: #FFF9F0;
    --color-bg-alt: #FFFBF4;
    --color-bg-gradient: linear-gradient(135deg, #FFF1F7 0%, #F5EDFF 50%, #EEF7FF 100%);
    --color-surface: #FFFFFF;
    --color-surface-alt: #FAF7FF;

    --color-text: #2A1B47;
    --color-text-secondary: #6B5B8C;
    --color-text-muted: #9A8DB8;
    --color-text-light: #FFFFFF;

    --color-border: #E8DFF5;
    --color-border-hover: #D4C3F0;

    --shadow-sm: 0 2px 8px rgba(90, 45, 145, 0.06);
    --shadow-md: 0 8px 24px rgba(90, 45, 145, 0.10);
    --shadow-lg: 0 16px 48px rgba(90, 45, 145, 0.14);
    --shadow-whatsapp: 0 10px 30px rgba(37, 211, 102, 0.28);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

    --container-max: 1200px;
    --container-padding: 24px;

    --transition-fast: 160ms ease-out;
    --transition-base: 240ms cubic-bezier(.4,0,.2,1);
    --transition-slow: 400ms cubic-bezier(.4,0,.2,1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg-gradient);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

[hidden] {
    display: none !important;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid rgba(232, 223, 245, 0.7);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 72px;
}

.header__logo-link {
    display: inline-flex;
    line-height: 0;
}

.header__logo {
    height: 48px;
    object-fit: contain;
}

/* ===================== SITE HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__topbar {
    background: linear-gradient(90deg, #4A1D80 0%, #5A2D91 100%);
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 216, 77, 0.2);
}

.site-header__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 16px;
    text-align: center;
}

.site-header__slogan {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.site-header__hashtag {
    color: #FFD84D;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 600;
    margin-right: 4px;
    font-size: 15.5px;
    letter-spacing: 0.01em;
}

.site-header__main {
    background: #FFFFFF;
    box-shadow: 0 2px 14px rgba(64, 32, 107, 0.08);
    border-bottom: 1px solid rgba(232, 223, 245, 0.6);
}

.site-header__main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
    padding: 16px var(--container-padding);
    gap: 16px;
}

.site-header__logo-link {
    display: inline-flex;
    line-height: 0;
}

.site-header__logo {
    height: 70px;
    object-fit: contain;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: linear-gradient(180deg, #FFE066 0%, #FFD84D 100%);
    color: #2A1B47;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    border-radius: 999px;
    border: 1.5px solid #F0C220;
    box-shadow:
        0 4px 14px rgba(255, 216, 77, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-support:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px rgba(255, 216, 77, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: linear-gradient(180deg, #FFE680 0%, #FFDC5A 100%);
}

.btn-support:active {
    transform: translateY(0);
}

.btn-support--soft {
    background: transparent;
    color: #5A2D91;
    border: 1.5px solid rgba(90, 45, 145, 0.55);
    box-shadow: none;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.btn-support--soft:hover {
    background: rgba(90, 45, 145, 0.06);
    border-color: rgba(90, 45, 145, 0.8);
    box-shadow: none;
    transform: none;
}

/* ===================== HERO FUNNEL ===================== */
.hero-funnel {
    position: relative;
    overflow: hidden;
    padding: 40px 0 0;
    background:
        linear-gradient(135deg, #260F52 0%, #3D1A75 35%, #2A1B68 70%, #1E2A6B 100%);
    color: #FFFFFF;
    min-height: 760px;
}

.hero-funnel__container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
}

.hero-funnel__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.75fr) minmax(0, 1.4fr);
    gap: 14px;
    align-items: stretch;
    min-height: 720px;
    padding: 16px 0 60px;
}

@media (min-width: 901px) {
    .hero-funnel__grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.75fr) minmax(0, 1.4fr);
        grid-template-rows: 1fr auto;
        row-gap: 0;
    }

    .hero-funnel__brand {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        align-self: end;
        padding-bottom: 0;
    }

    .hero-hashtag-wrap {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        align-self: end;
        justify-self: start;
        z-index: 3;
        margin: 0;
        padding: 16px 0 20px;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-funnel__footer {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        align-self: start;
        justify-self: start;
        padding: 16px 0 4px;
        border-top: none;
        width: 100%;
    }

    .hero-funnel__image-layer {
        grid-row: 1 / -1;
        width: 30%;
        max-width: 430px;
        min-width: 220px;
        bottom: -2px;
        max-height: 860px;
    }

    .hero-funnel__portrait {
        max-height: 820px;
        object-fit: contain;
        object-position: center bottom;
    }

    .hero-funnel__panel {
        grid-row: 1 / -1;
    }
}

.hero-funnel__brand {
    position: relative;
    z-index: 3;
    grid-column: 1 / 2;
    align-self: center;
    padding-top: 0;
    padding-right: 8px;
    max-width: 620px;
}

.hero-badge-wrap {
    margin-bottom: 22px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    border-radius: 999px;
    background: rgba(255, 216, 77, 0.12);
    border: 1px solid rgba(255, 216, 77, 0.28);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #FFD84D;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-badge__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FFF0A0, #FFD84D);
    box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.16);
}

.hero-badge__text {
    color: #FFE88A;
}

.hero-badge__arrow {
    font-weight: 800;
    color: #FFD84D;
    margin-left: 2px;
}

.hero-funnel__title {
    font-size: clamp(38px, 4.6vw, 64px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    color: #FFFFFF;
    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.45),
        0 2px 4px rgba(61, 26, 117, 0.85);
    max-width: 560px;
    -webkit-hyphens: none;
    hyphens: none;
    white-space: normal;
}

.hero-funnel__title-accent {
    color: #FFD84D;
}

.hero-funnel__title-whatsapp {
    color: #25D366;
}

.hero-funnel__subtitle {
    font-size: clamp(15px, 1.35vw, 18px);
    color: rgba(255, 255, 255, 0.88);
    max-width: 460px;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(38, 15, 82, 0.7);
}

.hero-funnel__subtitle strong {
    color: #FFFFFF;
    font-weight: 800;
}

.hero-hashtag-wrap {
    grid-column: 1 / 2;
    align-self: end;
    justify-self: start;
    z-index: 3;
    margin-top: 16px;
    margin-bottom: 8px;
}

.hero-hashtag {
    font-size: 17.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 216, 77, 0.92);
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(180deg, #FFE066 0%, #FFD84D 100%);
    color: #2A1B47;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.05em;
    border-radius: 999px;
    border: 2px solid #F0C220;
    box-shadow:
        0 8px 26px rgba(255, 216, 77, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: all var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #FFE680 0%, #FFDC5A 100%);
    box-shadow:
        0 12px 36px rgba(255, 216, 77, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn-primary__icon {
    font-size: 18px;
    line-height: 1;
}

.btn-primary__text {
    letter-spacing: 0.06em;
}

.btn-primary__arrow {
    font-weight: 800;
    font-size: 18px;
}

.hero-funnel__footer {
    grid-column: 1 / 2;
    grid-row: auto;
    align-self: end;
    justify-self: start;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 16px;
    padding-bottom: 24px;
    margin-bottom: 0;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
}

.social-btn svg {
    width: 16px;
    height: 16px;
}

.social-btn:hover {
    background: rgba(255, 216, 77, 0.18);
    border-color: rgba(255, 216, 77, 0.35);
    color: #FFD84D;
    transform: translateY(-1px);
}

.social-btn--static {
    pointer-events: none;
    cursor: default;
    opacity: 0.88;
}

.party-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 10px;
}

.party-logo::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0) 72%);
    filter: blur(6px);
    opacity: 0.85;
    z-index: 0;
    pointer-events: none;
}

.party-logo__img {
    position: relative;
    z-index: 1;
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

/* ===== Imagem centralizada (coluna VAZIA do meio, 100% livre) ===== */
.hero-funnel__image-layer {
    position: absolute;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%);
    width: 40%;
    max-width: 480px;
    min-width: 260px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    max-height: 780px;
}

.hero-funnel__glow {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 180%;
    height: 85%;
    background:
        radial-gradient(ellipse 80% 60% at 50% 85%, rgba(255, 95, 162, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 50% 60%, rgba(255, 216, 77, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(124, 73, 184, 0.50) 0%, transparent 70%);
    filter: blur(6px);
    opacity: 0.95;
    z-index: 0;
}

.hero-funnel__portrait {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: 100%;
    max-height: 760px;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.55));
    align-self: flex-end;
}

/* ===== Painel Lateral (direita, col 3) ===== */
.hero-funnel__panel {
    position: relative;
    z-index: 3;
    grid-column: 3 / 4;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 540px;
    background: linear-gradient(180deg, rgba(46, 25, 92, 0.88) 0%, rgba(34, 19, 70, 0.94) 100%);
    border: 1.5px solid rgba(255, 216, 77, 0.25);
    border-radius: 24px;
    padding: 24px 24px 26px;
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.50),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    color: #FFFFFF;
    overflow: hidden;
}

.hero-funnel__panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD84D 0%, #FF5FA2 45%, #7C49B8 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-funnel__panel .steps-indicator {
    margin-bottom: 20px;
}

.hero-funnel__panel .step-indicator__circle {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.55);
}

.hero-funnel__panel .step-indicator.is-active .step-indicator__circle {
    background: linear-gradient(135deg, #FFD84D 0%, #FF8F40 100%);
    border-color: #FFD84D;
    color: #2A1B47;
    box-shadow: 0 6px 18px rgba(255, 216, 77, 0.30);
}

.hero-funnel__panel .step-indicator.is-completed .step-indicator__circle {
    background: linear-gradient(135deg, #25D366 0%, #32DE74 100%);
    border-color: #25D366;
    color: #FFFFFF;
}

.hero-funnel__panel .step-indicator__label {
    color: rgba(255, 255, 255, 0.55);
}

.hero-funnel__panel .step-indicator.is-active .step-indicator__label,
.hero-funnel__panel .step-indicator.is-completed .step-indicator__label {
    color: #FFFFFF;
}

.hero-funnel__panel .step-indicator__connector {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 216, 77, 0.40) 100%);
}

.panel-copy {
    margin-bottom: 18px;
}

.panel-copy__title {
    font-size: 16.5px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
    line-height: 1.35;
}

.panel-copy__sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 500;
    line-height: 1.4;
}

.hero-funnel__panel .funnel__card {
    max-width: none;
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.hero-funnel__panel .funnel__card::before {
    display: none;
}

.hero-funnel__panel .funnel__form {
    gap: 14px;
}

.hero-funnel__panel .form-group {
    margin-bottom: 0;
}

.hero-funnel__panel .form-group__label {
    margin-bottom: 8px;
}

.select-wrapper--lg .form-group__select {
    padding: 16px 52px 16px 18px;
    font-size: 15.5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 216, 77, 0.22);
    color: #FFFFFF;
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.20);
    font-weight: 600;
}

.select-wrapper--lg .form-group__select:hover:not(:disabled) {
    border-color: rgba(255, 216, 77, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.select-wrapper--lg .form-group__select:focus {
    background: rgba(255, 255, 255, 0.10);
    border-color: #FFD84D;
    box-shadow:
        0 0 0 4px rgba(255, 216, 77, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
}

.select-wrapper--lg .form-group__select option {
    background: #23124A;
    color: #FFFFFF;
    font-weight: 500;
}

.select-wrapper--lg .select-wrapper__icon {
    right: 20px;
    color: rgba(255, 255, 255, 0.60);
    width: 22px;
    height: 22px;
}

.select-wrapper--lg .form-group__select:focus + .select-wrapper__icon {
    color: #FFD84D;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 22px;
    background: linear-gradient(180deg, #34166B 0%, #260F52 100%);
    color: #FFD84D;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.04em;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 216, 77, 0.35);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 216, 77, 0.08);
    transition: all var(--transition-base);
    cursor: pointer;
    font-family: inherit;
    margin-top: 4px;
}

.btn-ghost:hover:not(:disabled) {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #3E1C82 0%, #2E135E 100%);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 216, 77, 0.10);
    border-color: rgba(255, 216, 77, 0.55);
}

.btn-ghost:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.2);
}

.btn-ghost__icon {
    width: 19px;
    height: 19px;
    color: #FFD84D;
    flex-shrink: 0;
}

.panel-legal {
    margin-top: 12px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    text-align: left;
}

.panel-legal--center {
    text-align: center;
    margin-top: 16px;
}

/* ===== Resultados no painel ===== */
.hero-funnel__panel .results-section {
    margin-top: 20px;
    max-width: none;
}

.hero-funnel__panel .results-section__header {
    margin-bottom: 18px;
    text-align: left;
}

.hero-funnel__panel .results-section__title {
    font-size: clamp(22px, 2.6vw, 28px);
    color: #FFFFFF;
    margin-bottom: 6px;
}

.hero-funnel__panel .results-section__city-name {
    background: linear-gradient(135deg, #FFD84D 0%, #FF5FA2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-funnel__panel .results-section__subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    text-align: left;
}

.hero-funnel__panel .results-list {
    gap: 16px;
}

.hero-funnel__panel .result-item {
    padding: 18px 18px 20px;
    background: linear-gradient(180deg, rgba(52, 28, 102, 0.85) 0%, rgba(40, 22, 82, 0.92) 100%);
    border-image: linear-gradient(135deg, rgba(255, 216, 77, 0.40), rgba(255, 95, 162, 0.35), rgba(124, 73, 184, 0.40)) 1;
    background-image:
        linear-gradient(rgba(52, 28, 102, 0.96), rgba(40, 22, 82, 0.98)),
        linear-gradient(135deg, rgba(255, 216, 77, 0.40), rgba(255, 95, 162, 0.35), rgba(124, 73, 184, 0.40));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.30);
    color: #FFFFFF;
}

.hero-funnel__panel .result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.40);
}

.hero-funnel__panel .result-item__badge {
    background: linear-gradient(135deg, rgba(255, 216, 77, 0.18), rgba(255, 95, 162, 0.14));
    border: 1px solid rgba(255, 216, 77, 0.32);
    color: #FFE88A;
    margin-bottom: 12px;
}

.hero-funnel__panel .result-item__badge-dot {
    background: #FFD84D;
}

.hero-funnel__panel .result-item__group-label {
    color: rgba(255, 255, 255, 0.55);
}

.hero-funnel__panel .result-item__group-name {
    color: #FFFFFF;
    margin-bottom: 18px;
    font-size: 17px;
}

.hero-funnel__panel .unavailable-state {
    background: linear-gradient(135deg, rgba(255, 216, 77, 0.12), rgba(255, 95, 162, 0.10));
    border-color: rgba(255, 95, 162, 0.30);
    padding: 18px 12px 2px;
}

.hero-funnel__panel .unavailable-state__title {
    color: #FFFFFF;
}

.hero-funnel__panel .unavailable-state__text {
    color: rgba(255, 255, 255, 0.68);
}

.hero-funnel__panel .cta-button {
    padding: 15px 20px;
    font-size: 15px;
}

.hero-funnel__panel .loading-state__text {
    color: rgba(255, 255, 255, 0.75);
}

.hero-funnel__panel .error-state__title {
    color: #FFFFFF;
}

.hero-funnel__panel .error-state__text {
    color: rgba(255, 255, 255, 0.70);
}

.hero {
    position: relative;
    padding: 56px 0 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 95, 162, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(77, 150, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FFF0C2 0%, #FFE69C 100%);
    border: 1px solid rgba(240, 194, 32, 0.35);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #7A5A00;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(240, 194, 32, 0.18);
}

.hero__title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero__subtitle {
    font-size: clamp(16px, 1.6vw, 18px);
    color: var(--color-text-secondary);
    max-width: 540px;
    margin-bottom: 0;
}

.hero__subtitle strong {
    color: var(--color-primary);
    font-weight: 700;
}

.hero__image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__image-wrap::before {
    content: '';
    position: absolute;
    width: 88%;
    height: 88%;
    bottom: 0;
    left: 6%;
    background: linear-gradient(135deg, rgba(90, 45, 145, 0.12), rgba(255, 95, 162, 0.18));
    border-radius: 50% 50% 24% 24%;
    z-index: 0;
}

.hero__image {
    position: relative;
    z-index: 1;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(90, 45, 145, 0.18));
}

.funnel {
    padding: 40px 0 72px;
    position: relative;
}

.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    row-gap: 8px;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-indicator__circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text-muted);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.step-indicator.is-active .step-indicator__circle {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-color: var(--color-primary-light);
    color: var(--color-text-light);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(90, 45, 145, 0.28);
}

.step-indicator.is-completed .step-indicator__circle {
    background: linear-gradient(135deg, var(--color-accent-green) 0%, #32DE74 100%);
    border-color: var(--color-accent-green);
    color: var(--color-text-light);
}

.step-indicator__label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color var(--transition-base);
    white-space: nowrap;
}

.step-indicator.is-active .step-indicator__label,
.step-indicator.is-completed .step-indicator__label {
    color: var(--color-primary-dark);
}

.step-indicator__connector {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-border) 0%, var(--color-border-hover) 100%);
    border-radius: 999px;
    margin: 0 16px;
    position: relative;
    top: -14px;
}

.funnel__card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 52px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(232, 223, 245, 0.6);
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.funnel__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-pink) 50%, var(--color-accent-yellow) 100%);
}

.loading-state,
.error-state {
    text-align: center;
    padding: 32px 16px;
}

.loading-state__spinner {
    width: 52px;
    height: 52px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 0.8s linear infinite;
}

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

.loading-state__text {
    color: var(--color-text-secondary);
    font-weight: 600;
    font-size: 16px;
}

.error-state__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.error-state__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.error-state__text {
    color: var(--color-text-secondary);
    font-size: 15px;
}

.funnel__form {
    display: grid;
    gap: 32px;
}

.form-group__label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.form-group__label-text {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary-dark);
}

.form-group__label-sub {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.select-wrapper {
    position: relative;
}

.select-wrapper__icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: transform var(--transition-base);
}

.form-group__select:focus + .select-wrapper__icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--color-primary);
}

.form-group__select {
    width: 100%;
    padding: 18px 52px 18px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-surface-alt);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.form-group__select:hover:not(:disabled) {
    border-color: var(--color-border-hover);
    background: #FFFFFF;
}

.form-group__select:focus {
    outline: none;
    border-color: var(--color-primary-light);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(124, 73, 184, 0.15);
}

.form-group__select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.15);
}

.form-group__select option {
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-section {
    margin-top: 40px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp var(--transition-slow) both;
}

.results-section__header {
    text-align: center;
    margin-bottom: 32px;
}

.results-section__title {
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.results-section__city-name {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.results-section__subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.results-list {
    display: grid;
    gap: 24px;
}

.result-item {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3.5vw, 36px);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    background-image:
        linear-gradient(var(--color-surface), var(--color-surface)),
        linear-gradient(135deg, rgba(255, 216, 77, 0.45), rgba(255, 95, 162, 0.35), rgba(124, 73, 184, 0.35));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.result-item::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.result-item__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(90, 45, 145, 0.12), rgba(255, 95, 162, 0.12));
    border: 1px solid rgba(124, 73, 184, 0.3);
    border-radius: 999px;
    font-weight: 700;
    font-size: 12.5px;
    color: var(--color-primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

.result-item__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent-pink);
}

.result-item__category {
    position: relative;
    z-index: 1;
}

.result-item__group-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.result-item__group-name {
    font-size: clamp(17px, 1.8vw, 19px);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--color-accent-green) 0%, #32DE74 100%);
    color: #FFFFFF;
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 800;
    font-family: inherit;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-whatsapp);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover:not(:disabled)::before {
    left: 100%;
}

.cta-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.38);
    background: linear-gradient(135deg, #2CD970 0%, #45E585 100%);
}

.cta-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}

.cta-button:focus-visible {
    outline: none;
    box-shadow: var(--shadow-whatsapp), 0 0 0 5px rgba(37, 211, 102, 0.2);
}

.cta-button__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.cta-button__text {
    flex: 1;
    letter-spacing: -0.01em;
}

.cta-button__arrow {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.cta-button:hover:not(:disabled) .cta-button__arrow {
    transform: translateX(4px);
}

.cta-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.25);
    box-shadow: var(--shadow-sm);
}

.unavailable-state {
    text-align: center;
    padding: 20px 16px 4px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.4s ease-out both;
    background: linear-gradient(135deg, rgba(255, 216, 77, 0.10), rgba(255, 95, 162, 0.08));
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 95, 162, 0.35);
}

.unavailable-state__icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.unavailable-state__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
}

.unavailable-state__text {
    color: var(--color-text-secondary);
    font-size: 14px;
    max-width: 360px;
    margin: 0 auto;
    padding-bottom: 16px;
}

.cta-banner {
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner__inner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 216, 77, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 95, 162, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}

.cta-banner__subtitle {
    font-size: clamp(14px, 1.4vw, 16px);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.cta-banner__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-banner__image img {
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.18));
}

.footer {
    background: var(--color-primary-dark);
    padding: 32px 0;
    margin-top: 16px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer__logo {
    height: 44px;
    object-fit: contain;
}

.footer__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__copy-line {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.footer__copy-line--sub {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 400;
}

@media (max-width: 900px) {
    .site-header__topbar-inner {
        min-height: 40px;
        padding: 8px 14px;
    }

    .site-header__slogan {
        font-size: 13px;
    }

    .site-header__main-inner {
        min-height: 82px;
    }

    .site-header__logo {
        height: 60px;
    }

    .btn-support {
        padding: 10px 18px;
        font-size: 12px;
    }

    .hero-funnel {
        min-height: auto;
        padding: 32px 0 0;
    }

    .hero-funnel__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        grid-auto-flow: dense;
        grid-template-areas: none;
        gap: 18px 14px;
        min-height: auto;
        padding-bottom: 40px;
        align-items: start;
    }

    .hero-funnel__brand {
        order: 1;
        grid-column: 1 / 2;
        grid-row: auto;
        align-self: center;
        max-width: none;
        text-align: left;
        padding: 0;
        padding-right: 0;
    }

    .hero-funnel__title {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .hero-badge-wrap {
        display: flex;
        justify-content: flex-start;
    }

    .hero-funnel__subtitle {
        margin: 0 0 18px;
        text-align: left;
    }

    .hero-funnel__cta-wrap {
        display: flex;
        justify-content: flex-start;
    }

    .hero-hashtag-wrap {
        order: 4;
        grid-column: 1 / -1;
        align-self: auto;
        justify-self: center;
        text-align: center;
        margin: 8px auto 0;
    }

    .hero-hashtag {
        text-align: center;
    }

    .hero-funnel__footer {
        order: 5;
        grid-column: 1 / -1;
        align-self: auto;
        justify-self: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin: 0 auto;
        max-width: 440px;
        padding-top: 14px;
        padding-bottom: 0;
    }

    .social-row {
        justify-content: center;
    }

    .hero-funnel__image-layer {
        order: 2;
        grid-column: 2 / 3;
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: 320px;
        min-width: 0;
        max-height: 420px;
        height: auto;
        margin: 0 0 0 auto;
        pointer-events: none;
        align-self: end;
    }

    .hero-funnel__glow {
        left: 50%;
        width: 160%;
    }

    .hero-funnel__portrait {
        max-height: 400px;
        margin: 0 0 0 auto;
    }

    .hero-funnel__panel {
        order: 3;
        grid-column: 1 / -1;
        align-self: auto;
        justify-self: stretch;
        width: 100%;
        max-width: none;
        position: relative;
        top: 0;
        margin-top: 4px;
    }

    .hero {
        padding: 40px 0 32px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__image {
        max-height: 320px;
    }

    .step-indicator__connector {
        width: 32px;
        margin: 0 10px;
    }

    .step-indicator__label {
        font-size: 12px;
    }

    .cta-banner__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .cta-banner__image img {
        max-height: 160px;
    }
}

@media (max-width: 560px) {
    :root {
        --container-padding: 18px;
    }

    .site-header__topbar-inner {
        min-height: 38px;
        padding: 6px 12px;
    }

    .site-header__slogan {
        font-size: 11.5px;
        line-height: 1.35;
    }

    .site-header__hashtag {
        font-size: 12.5px;
        display: block;
        margin-bottom: 2px;
    }

    .site-header__main-inner {
        min-height: 74px;
        gap: 12px;
    }

    .site-header__logo {
        height: 52px;
    }

    .btn-support {
        padding: 9px 16px;
        font-size: 11px;
        letter-spacing: 0.04em;
    }

    .hero-funnel {
        padding: 24px 0 0;
    }

    .hero-funnel__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 12px 10px;
        padding-bottom: 36px;
        align-items: start;
    }

    .hero-funnel__brand {
        align-self: center;
        padding: 0;
    }

    .hero-funnel__title {
        font-size: clamp(28px, 8vw, 44px);
        max-width: 100%;
        line-height: 0.98;
        letter-spacing: -0.02em;
        margin-bottom: 12px;
    }

    .hero-funnel__subtitle {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .hero-hashtag-wrap {
        order: 4;
        grid-column: 1 / -1;
        align-self: auto;
        justify-self: center;
        text-align: center;
        margin: 4px auto 0;
    }

    .hero-hashtag {
        font-size: 14.5px;
        text-align: center;
    }

    .hero-funnel__footer {
        order: 5;
        grid-column: 1 / -1;
        align-self: auto;
        justify-self: center;
        flex-direction: column;
        gap: 14px;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        max-width: 320px;
        padding-top: 12px;
        padding-bottom: 0;
    }

    .social-btn {
        width: 30px;
        height: 30px;
    }

    .social-btn svg {
        width: 14px;
        height: 14px;
    }

    .party-logo__img {
        height: 32px;
    }

    .hero-funnel__portrait {
        max-height: 320px;
        margin: 0 0 0 auto;
    }

    .hero-funnel__image-layer {
        grid-column: 2 / 3;
        max-width: 240px;
        max-height: 360px;
        margin: 0 0 0 auto;
        align-self: end;
    }

    .hero-funnel__glow {
        width: 170%;
        height: 92%;
    }

    .hero-funnel__panel {
        grid-column: 1 / -1;
        align-self: auto;
        max-width: 100%;
        padding: 20px 16px 22px;
        border-radius: 20px;
        margin-top: 8px;
    }

    .hero-funnel__panel .steps-indicator {
        margin-bottom: 16px;
    }

    .hero-funnel__panel .step-indicator__circle {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .hero-funnel__panel .step-indicator {
        gap: 8px;
    }

    .hero-funnel__panel .step-indicator__label {
        font-size: 12px;
    }

    .hero-funnel__panel .step-indicator__connector {
        width: 28px;
        margin: 0 8px;
        top: -7px;
    }

    .btn-ghost {
        padding: 14px 20px;
        font-size: 14.5px;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero {
        padding: 32px 0 24px;
    }

    .hero__badge {
        font-size: 13px;
        padding: 7px 14px;
    }

    .funnel {
        padding: 24px 0 56px;
    }

    .steps-indicator {
        margin-bottom: 28px;
    }

    .step-indicator__circle {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .step-indicator {
        gap: 8px;
    }

    .step-indicator__label {
        display: none;
    }

    .funnel__card {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    .funnel__form {
        gap: 24px;
    }

    .form-group__select {
        padding: 16px 48px 16px 18px;
        font-size: 15px;
    }

    .result-card {
        margin-top: 28px;
    }

    .result-card__inner {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    .cta-button {
        padding: 18px 20px;
        gap: 10px;
    }

    .cta-button__icon {
        width: 22px;
        height: 22px;
    }

    .cta-button__arrow {
        display: none;
    }

    .cta-banner {
        padding: 40px 0;
    }

    .cta-banner__inner {
        padding: 28px 22px;
        border-radius: var(--radius-lg);
    }

    .result-card__group {
        padding: 16px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
