html {
    scroll-behavior: smooth;
    font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    box-sizing: border-box;
}

*,
::before,
::after {
    box-sizing: inherit;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

body {
    background: #F8F9FA;
    color: #1F2937;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    overflow-x: hidden;
    padding-top: 80px;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    color: inherit;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
}

.lead-card {
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    width: 100%;
    max-width: 380px;
}

.snd-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.lead-card__top {
    background: linear-gradient(100deg, #0879dc 0%, #38BDF8 100%);
    border-radius: 16px 16px 0 0;
}

.progress-dot {
    display: block;
    flex: 0 0 auto;
    width: 21px;
    height: 4px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    padding: 0;
    transition: background 0.2s ease, width 0.2s ease;
    cursor: pointer;
}

.progress-dot.is-active {
    width: 23px;
    background: #ffffff;
}

.form-step[hidden],
.success-state[hidden],
.culprit-card__revealed[hidden] {
    display: none;
}

.culprit-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.culprit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.18), transparent 58%);
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.35s ease, transform 0.45s ease;
    pointer-events: none;
}

.culprit-card__teaser,
.culprit-card__revealed {
    position: relative;
    z-index: 1;
}

.culprit-card__teaser {
    transition: opacity 0.22s ease, transform 0.32s ease;
    transform-origin: center;
}

.culprit-card.is-revealed .culprit-card__teaser {
    position: absolute;
    inset: 0;
    padding: 24px;
    pointer-events: none;
}

.culprit-card.is-revealed:not(.is-revealing) .culprit-card__teaser {
    opacity: 0;
    visibility: hidden;
}

.culprit-card.is-revealed .culprit-card__revealed {
    display: block;
    animation: culpritReveal 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.culprit-card.is-revealed {
    border-color: rgba(56, 189, 248, 0.65);
    box-shadow: 0 24px 55px rgba(2, 8, 23, 0.25), 0 0 0 1px rgba(56, 189, 248, 0.12) inset;
    animation: culpritCardPop 0.46s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.culprit-card.is-revealed::before {
    opacity: 1;
    transform: scale(1);
}

.culprit-card.is-revealing .culprit-card__teaser {
    opacity: 0;
    transform: translateY(-10px) scale(0.94) rotateX(16deg);
}

@keyframes culpritReveal {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
        filter: blur(6px);
    }

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

@keyframes culpritCardPop {
    0% {
        transform: translateY(0) scale(1);
    }

    55% {
        transform: translateY(-8px) scale(1.02);
    }

    100% {
        transform: translateY(-4px) scale(1);
    }
}

.logo-strip img {
    filter: saturate(0.85);
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select.is-open {
    z-index: 1000;
}

.custom-select__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid #BFDBFE;
    border-radius: 8px;
    background: #fff;
    padding: 10px 16px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: #94A3B8;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.custom-select.has-value .custom-select__trigger {
    color: #1e293b;
}

.custom-select.is-invalid .custom-select__trigger {
    border-color: #ef4444 !important;
    background: #fff7f7;
}

.custom-select__trigger:focus,
.custom-select.is-open .custom-select__trigger {
    border-color: #0F7ADE;
    box-shadow: 0 0 0 4px rgba(15, 122, 222, 0.1);
    outline: none;
}

.custom-select__chevron {
    flex-shrink: 0;
    color: #94A3B8;
    transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__chevron {
    transform: rotate(180deg);
}

.custom-select__list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    padding: 6px;
    list-style: none;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.custom-select.is-open .custom-select__list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-select__list li {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
}

.custom-select__list li:hover {
    background: #EFF6FF;
    color: #0F7ADE;
}

.custom-select__list li.is-selected {
    background: #EFF6FF;
    color: #0F7ADE;
    font-weight: 700;
}

.field-error {
    display: block;
    margin-top: 5px;
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
}

.is-invalid {
    border-color: #ef4444 !important;
    background: #fff7f7;
}

.wa-lead-card[hidden] {
    display: none !important;
}

.wa-lead-card {
    animation: waLeadCardIn 0.24s ease both;
}

.wa-lead-card.is-closing {
    animation: waLeadCardOut 0.2s ease both;
}

.wa-chat-bg {
    background-color: #efe7dd;
    background-image:
        linear-gradient(45deg, rgba(7, 94, 84, 0.035) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(7, 94, 84, 0.035) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(7, 94, 84, 0.035) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(7, 94, 84, 0.035) 75%);
    background-position: 0 0, 0 8px, 8px -8px, -8px 0;
    background-size: 16px 16px;
}

.wa-lead-card .field-error {
    margin-top: 2px;
    color: #b91c1c;
    font-size: 11px;
    font-weight: 800;
}

.wa-lead-card input.is-invalid {
    border-color: #ef4444 !important;
    background: #fff7f7;
}

.wa-lead-bounce {
    animation: waLeadButtonBounce 0.78s cubic-bezier(0.2, 0.75, 0.3, 1.25) both;
}

@keyframes waLeadCardIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

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

@keyframes waLeadCardOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
}

@keyframes waLeadButtonBounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    24% {
        transform: translateY(-16px) scale(1.05);
    }

    48% {
        transform: translateY(0) scale(0.98);
    }

    68% {
        transform: translateY(-8px) scale(1.03);
    }

    84% {
        transform: translateY(0) scale(1);
    }
}

#interactive-demo-container {
    display: none !important;
}

#interactive-demo-live {
    display: none !important;
}

.ad-demo {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 18px;
    text-align: left;
}

.ad-demo__tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ad-demo__tab {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 72px;
    border: 0;
    border-radius: 16px;
    background: #fff;
    color: #1f2937;
    padding: 14px 16px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.ad-demo__tab:hover {
    transform: translateX(4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.ad-demo__tab.is-active {
    background: linear-gradient(135deg, #0F7ADE 0%, #1DA8F2 100%);
    color: #fff;
    box-shadow: 0 20px 36px rgba(15, 122, 222, 0.25);
    transform: translateX(6px);
}

.ad-demo__tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #E8F3FF;
    color: #0F7ADE;
    flex: 0 0 auto;
}

.ad-demo__tab.is-active .ad-demo__tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.ad-demo__tab-title {
    display: block;
    font-size: 14px;
    font-weight: 800;
}

.ad-demo__tab-text {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
}

.ad-demo__tab.is-active .ad-demo__tab-text {
    color: rgba(255, 255, 255, 0.9);
}

.ad-demo__stage {
    min-height: 460px;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    background: #fff;
    padding: 26px 28px;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.08);
}

.ad-demo__panel[hidden] {
    display: none;
}

.ad-demo__panel {
    animation: demoPanelIn 0.24s ease both;
}

@keyframes demoPanelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.ad-demo__hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 18px;
    color: #94A3B8;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.ad-kanban {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-height: 330px;
}

.ad-kanban__col {
    border-radius: 16px;
    background: #F8FAFC;
    padding: 12px;
    transition: background 0.2s ease, outline 0.2s ease;
}

.ad-kanban__col.is-over {
    background: #EAF5FF;
    outline: 2px solid rgba(15, 122, 222, 0.25);
}

.ad-kanban__head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: #64748B;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ad-kanban__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ad-kanban__count {
    margin-left: auto;
    padding: 1px 8px;
    border-radius: 999px;
    background: #E2E8F0;
    color: #94A3B8;
    letter-spacing: 0;
}

.ad-ticket {
    margin-bottom: 10px;
    border-left: 3px solid #CBD5E1;
    border-radius: 10px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.07);
    color: #334155;
    cursor: grab;
    user-select: none;
}

.ad-ticket:active {
    cursor: grabbing;
}

.ad-ticket.is-dragging {
    opacity: 0.45;
    transform: scale(0.98);
}

.ad-ticket--blue {
    border-left-color: #0F7ADE;
}

.ad-ticket--green {
    border-left-color: #23AA58;
}

.ad-ticket--amber {
    border-left-color: #FAAF3C;
}

.ad-ticket__id {
    color: #94A3B8;
    font-size: 11px;
    font-weight: 700;
}

.ad-ticket__title {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 700;
}

.ad-ticket__meta {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 9px;
    padding-top: 8px;
    border-top: 1px solid #E2E8F0;
    color: #94A3B8;
    font-size: 11px;
    font-weight: 700;
}

.ad-sla {
    display: grid;
    gap: 14px;
}

.ad-sla__row,
.ad-action-box,
.ad-route__item {
    border-radius: 14px;
    background: #F8FAFC;
    padding: 16px;
}

.ad-sla__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.ad-sla__title {
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.ad-sla__sub,
.ad-action-box p {
    margin-top: 2px;
    color: #94A3B8;
    font-size: 12px;
    font-weight: 700;
}

.ad-sla__badge {
    border-radius: 999px;
    padding: 4px 10px;
    background: #D1FAE5;
    color: #065F46;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.ad-sla__badge--warn {
    background: #FEF3C7;
    color: #92400E;
}

.ad-sla__badge--crit {
    background: rgba(221, 75, 107, 0.14);
    color: #DD4B6B;
}

.ad-sla__track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #E2E8F0;
}

.ad-sla__fill {
    height: 100%;
    border-radius: inherit;
    transition: width 0.5s ease, background 0.5s ease;
}

.ad-sla__time {
    margin-top: 7px;
    color: #64748B;
    font-size: 12px;
    font-weight: 700;
}

.ad-demo__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.ad-demo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    background: #0F7ADE;
    color: #fff;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ad-demo__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 122, 222, 0.24);
}

.ad-demo__btn--light {
    background: #fff;
    color: #0F7ADE;
    border: 1px solid #BFDBFE;
}

.ad-form {
    display: grid;
    gap: 12px;
}

.ad-form input {
    width: 100%;
    border: 1px solid #D7E3F3;
    border-radius: 12px;
    background: #F8FAFC;
    padding: 12px 14px;
    color: #334155;
    outline: none;
}

.ad-form input:focus {
    border-color: #0F7ADE;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 122, 222, 0.1);
}

.ad-checklist {
    display: grid;
    gap: 10px;
}

.ad-checklist__item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: #F8FAFC;
    padding: 13px 14px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.ad-checklist__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid #CBD5E1;
    border-radius: 7px;
    color: #fff;
    flex: 0 0 auto;
}

.ad-checklist__item.is-done {
    color: #94A3B8;
    text-decoration: line-through;
}

.ad-checklist__item.is-done .ad-checklist__box {
    border-color: #0F7ADE;
    background: #0F7ADE;
}

.ad-route {
    display: grid;
    gap: 12px;
}

.ad-route__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ad-route__label {
    color: #64748B;
    font-size: 13px;
    font-weight: 800;
}

.ad-route__value {
    color: #0F7ADE;
    font-size: 20px;
    font-weight: 900;
}

.ad-route__saving {
    display: none;
    border-radius: 14px;
    background: #ECFDF5;
    color: #15803D;
    padding: 15px;
    font-weight: 900;
}

.ad-route__saving.is-visible {
    display: block;
}

@media (max-width: 768px) {
    .logo-strip img {
        max-width: 100%;
    }

    .ad-demo {
        grid-template-columns: 1fr;
    }

    .ad-demo__tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .ad-demo__tab {
        min-width: 180px;
    }

    .ad-demo__tab:hover,
    .ad-demo__tab.is-active {
        transform: none;
    }

    .ad-demo__stage {
        padding: 18px 14px;
        min-height: 380px;
    }

    .ad-kanban {
        display: flex;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .ad-kanban__col {
        min-width: 220px;
    }
}

.anunc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, background 0.4s ease;
}

.anunc-nav.is-hidden {
    transform: translateY(-100%);
}

.anunc-nav__brand {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.anunc-nav__logo {
    display: block;
    height: 136px;
    width: auto;
    object-fit: contain;
}

[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

[data-animate-delay="1"] {
    transition-delay: 0.08s;
}

[data-animate-delay="2"] {
    transition-delay: 0.18s;
}

[data-animate-delay="3"] {
    transition-delay: 0.28s;
}

[data-animate-delay="4"] {
    transition-delay: 0.38s;
}

[data-animate-delay="5"] {
    transition-delay: 0.48s;
}

/* ==========================================
   SHOWCASE OVERRIDES
========================================== */
#interactive-demo-container {
    display: none !important;
}

.snd-showcase {
    padding: 0 0 72px !important;
    min-height: auto !important;
    background: #F8F9FA;
}

.snd-showcase .snd-container {
    max-width: 1280px;
    padding: 0 20px;
}

.snd-showcase__grid {
    margin-top: 0;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    overflow: hidden;
}

.snd-showcase__stage {
    min-height: 500px;
    min-width: 0;
    overflow: hidden;
}

/* ==========================================
   BASE / RESET
========================================== */
.anunc-body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   SECTIONS
========================================== */
.anunc-section-hero {
    background-color: #F8F9FA;
    padding: 3.5rem 1.25rem;
}

@media (min-width: 640px) {
    .anunc-section-hero {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .anunc-section-hero {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.anunc-section-audience {
    background-color: #F8F9FA;
    padding: 2rem 1.25rem 5rem 1.25rem;
}

@media (min-width: 640px) {
    .anunc-section-audience {
        padding-top: 2.5rem;
        padding-bottom: 6rem;
    }
}

.anunc-section-default {
    background-color: #F8F9FA;
    padding: 5rem 1.25rem;
}

@media (min-width: 640px) {
    .anunc-section-default {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.anunc-section-dark {
    background-color: #1E293B;
    color: #ffffff;
    padding: 5rem 1.25rem;
}

@media (min-width: 640px) {
    .anunc-section-dark {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.anunc-section-cta {
    background-color: #F8F9FA;
    padding: 4rem 1.25rem;
}

@media (min-width: 640px) {
    .anunc-section-cta {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* ==========================================
   CONTAINERS
========================================== */
.anunc-container {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.anunc-container-md {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   GRIDS
========================================== */
.anunc-hero-grid,
.anunc-cta-grid {
    position: relative;
    z-index: 5;
    display: grid;
    align-items: center;
    gap: 2rem;
}

.anunc-hero-form-wrapper {
    position: relative;
    z-index: 50;
    width: 100%;
    max-width: 450px;
}

@media (min-width: 768px) {

    .anunc-hero-grid,
    .anunc-cta-grid {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .anunc-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }

    .anunc-cta-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 4rem;
    }

    .anunc-hero-form-wrapper {
        justify-self: end;
    }
}

.anunc-audience-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.75rem;
}

@media (min-width: 768px) {
    .anunc-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.anunc-culprits-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
}

@media (min-width: 640px) {
    .anunc-culprits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .anunc-culprits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.anunc-steps-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .anunc-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .anunc-steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

/* ==========================================
   HERO TEXT ELEMENTS
========================================== */
.anunc-badge {
    display: inline-flex;
    border-radius: 9999px;
    background-color: #E0F2FE;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0F7ADE;
    margin: 0;
    max-width: 100%;
    text-align: center;
}

.anunc-hero-title {
    margin-top: 1.75rem;
    max-width: 36rem;
    font-size: clamp(2rem, 5vw + 1rem, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #334155;
}

.anunc-hero-subtitle {
    margin-top: 1.5rem;
    max-width: 28rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
    color: #334155;
}

.anunc-hero-benefits {
    margin-top: 2.25rem;
    display: flex;
    max-width: 32rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.anunc-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid #BFDBFE;
    background-color: #ffffff;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

.anunc-icon-xs {
    width: 0.875rem;
    height: 0.875rem;
}

.anunc-icon-sm {
    width: 1rem;
    height: 1rem;
}

.anunc-icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

.anunc-icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

.text-snd-blue {
    color: #0F7ADE;
}

.anunc-logo-strip {
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    max-width: 56rem;
    width: min(650px, 100%);
    user-select: none;
    -webkit-user-select: none;
}

.anunc-rating-proof {
    justify-content: flex-start;
    margin: 1.5rem 0 0;
}

.anunc-img-responsive {
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: 100%;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 1023px) {
    .anunc-rating-proof {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================
   TYPOGRAPHY
========================================== */
.anunc-text-center {
    text-align: center;
}

.anunc-text-left {
    text-align: left;
}

.anunc-section-kicker {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #0F7ADE;
    margin: 0;
}

.anunc-section-kicker-alert {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #FB7185;
    margin: 0;
}

.anunc-mt-kicker {
    margin-top: 2.5rem;
}

.anunc-section-title {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.25rem;
    max-width: 48rem;
    font-size: clamp(1.75rem, 4vw + 1rem, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #334155;
}

.anunc-section-title-white {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.25rem;
    max-width: 42rem;
    font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

.anunc-section-subtitle-white {
    margin-top: 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #E2E8F0;
}

/* ==========================================
   CARDS & LISTS
========================================== */
.anunc-card-positive {
    border-radius: 1rem;
    background-color: #ffffff;
    padding: 1.75rem;
    box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
}

.anunc-card-negative {
    border-radius: 1rem;
    background-color: #E5E7EB;
    padding: 1.75rem;
}

.anunc-card-title {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #334155;
    margin: 0;
}

.anunc-card-title-muted {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6B7280;
    margin: 0;
}

.anunc-list {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #334155;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.anunc-list-muted {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #6B7280;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.anunc-list-item {
    display: flex;
    gap: 1rem;
}

.anunc-list-icon-positive {
    margin-top: 0.125rem;
    display: inline-flex;
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 2px solid #10B981;
    color: #059669;
}

.anunc-list-icon-negative {
    margin-top: 0.125rem;
    display: inline-flex;
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 2px solid #FDA4AF;
    color: #FB7185;
}

/* ==========================================
   SYMPTOMS PILLS
========================================== */
.anunc-symptoms-list {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    display: flex;
    max-width: 56rem;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.anunc-symptom-pill {
    border-radius: 9999px;
    border: 1px solid #E5E7EB;
    background-color: #ffffff;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.08);
}

@media (min-width: 640px) {
    .anunc-symptom-pill {
        font-size: 1rem;
    }
}

.anunc-conclusion-pill {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    display: inline-flex;
    max-width: 48rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #334155;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
}

@media (min-width: 640px) {
    .anunc-conclusion-pill {
        font-size: 1rem;
    }
}

.anunc-emoji {
    margin-right: 0.5rem;
}

.anunc-emoji-lg {
    font-size: 1.5rem;
    line-height: 2rem;
}

.culprit-card__icon {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* ==========================================
   CULPRITS CARD
========================================== */
.culprit-card {
    min-height: 16rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(100, 116, 139, 0.8);
    background-color: #243449;
    padding: 1.5rem;
    text-align: left;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.culprit-card:hover {
    transform: translateY(-0.25rem);
    border-color: #7DD3FC;
}

.culprit-card:focus {
    outline: none;
    box-shadow: 0 0 0 2px #7DD3FC;
}

.culprit-card__teaser {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.anunc-teaser-title {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 800;
}

.anunc-revealed-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: rgba(244, 63, 94, 0.2);
    color: #FB7185;
}

.anunc-revealed-title {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.anunc-revealed-text {
    margin-top: 1rem;
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #F1F5F9;
}

/* ==========================================
   STEPS CARDS
========================================== */
.anunc-step-card {
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
    background-color: #ffffff;
    padding: 1.35rem;
    box-shadow: 0 18px 50px rgba(31, 41, 55, 0.08);
}

.anunc-step-icon {
    margin-bottom: 1.75rem;
    display: inline-flex;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #E0F2FE;
    color: #0F7ADE;
}

.anunc-step-title {
    font-size: clamp(1.125rem, 2vw + 1rem, 1.375rem);
    font-weight: 800;
    line-height: 1.25;
    color: #334155;
    margin: 0;
}

.anunc-step-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #334155;
}

/* ==========================================
   LEAD FORM
========================================== */
.lead-form {
    position: relative;
    z-index: 10;
    border-radius: 1rem;
    background-color: #ffffff;
    overflow: hidden;
}

.lead-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(0.75rem, 3vw, 1rem) clamp(1rem, 5vw, 1.5rem);
    color: #ffffff;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.lead-card__progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-body {
    padding: clamp(1rem, 5vw, 1.9rem);
    overflow: visible;
}

.form-steps-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    overflow: hidden;
}

.form-step {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.form-step[data-step="1"] {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.form-step[data-step="2"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    pointer-events: none;
}

.is-step-2 .form-step[data-step="1"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    pointer-events: none;
}

.is-step-2 .form-step[data-step="2"] {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.form-step[data-step="3"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    pointer-events: none;
}

.is-step-3 .form-step[data-step="1"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    pointer-events: none;
}

.is-step-3 .form-step[data-step="3"] {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.anunc-step3-hint {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.anunc-input[type="date"] {
    color: #1E293B;
}

.anunc-input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.45;
    cursor: pointer;
}

.form-group-space {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.anunc-input {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #BFDBFE;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1E293B;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.anunc-input::placeholder {
    color: #94A3B8;
}

.anunc-input:focus {
    border-color: #0F7ADE;
    box-shadow: 0 0 0 4px #DBEAFE;
}

.anunc-btn-submit {
    margin-top: 1.5rem;
    width: 100%;
    border-radius: 9999px;
    background-color: #0F7ADE;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2), 0 4px 6px -4px rgba(59, 130, 246, 0.2);
    transition: transform 0.15s ease, background-color 0.15s ease;
    cursor: pointer;
}

.anunc-btn-submit:hover {
    transform: translateY(-0.125rem);
    background-color: #2563EB;
}

.anunc-btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 4px #BFDBFE;
}

.anunc-success-state {
    border-radius: 0.75rem;
    border: 1px solid #A7F3D0;
    background-color: #ECFDF5;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.anunc-success-icon-wrap {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #D1FAE5;
    color: #059669;
}

.anunc-success-title {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: #047857;
}

.anunc-success-text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #047857;
}

.anunc-error-state {
    margin-top: 1rem;
    border-radius: 0.5rem;
    background-color: #FFF1F2;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #E11D48;
}

.anunc-form-footer {
    margin-top: 0.75rem;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 380px;
    justify-content: center;
    gap: 1.25rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #64748B;
}
/* Libera o corte da caixa APENAS quando o select estiver aberto */
.lead-form:has(.custom-select.is-open),
.form-body:has(.custom-select.is-open),
.form-steps-container:has(.custom-select.is-open),
.form-step:has(.custom-select.is-open) {
    overflow: visible !important;
}
@media (min-width: 640px) {
    .anunc-form-footer {
        font-size: 0.75rem;
    }
}

.anunc-form-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.anunc-cta-logo {
    height: auto;
    width: 10rem;
    margin-top: -40px;
}

/* ==========================================
   INTERACTIVE DEMO (SHOWCASE)
========================================== */
.anunc-bg-gray {
    background-color: #CBD5E1;
}

.anunc-bg-blue {
    background-color: #3B82F6;
}

.anunc-bg-green {
    background-color: #10B981;
}

.anunc-action-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #334155;
    margin: 0;
}

.anunc-mt-form {
    margin-top: 1rem;
}

#interactive-demo-container {
    margin-top: 2.25rem;
    width: 100%;
    height: 500px;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF4444;
    font-weight: 700;
}

/* ==========================================
   MOBILE OVERRIDES
========================================== */
@media (max-width: 768px) {
    .snd-showcase__grid {
        grid-template-columns: 1fr !important;
    }
}
