@media (max-width: 768px) {
    #landing h1.white {
        margin-top: 100px !important;
    }

    .hero-search-card {
        margin-bottom: 64px !important;
    }

    #planos {
        margin-top: 0 !important;
        padding-top: 32px !important;
    }
}

.hero-search-card {
    margin-top: 32px;
    background: linear-gradient(140deg, #4B2B8F 0%, #5734A4 65%, #6a45c7 100%);
    border: 1px solid rgba(173,146,245,.38);
    border-radius: 26px;
    box-shadow: 0 38px 74px rgba(21,12,58,.55);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #f5f5ff;
}

.hero-search-header {
    display: block;
}

.hero-search-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-search-copy h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
}

.hero-search-copy p {
    margin: 0;
    font-size: 14px;
    color: rgba(238,234,255,.86);
    line-height: 1.7;
    font-weight: 500;
}

.hero-search-form {
    margin: 4px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-search-fields {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#turnstile-container,
.cf-turnstile {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-search-input {
    flex: 1;
    min-width: 200px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 16px 18px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,.4);
    color: #241d48;
    background: rgba(255,255,255,.95);
    text-transform: uppercase;
    box-shadow: 0 18px 34px rgba(27,18,74,.25);
}

.hero-search-input:focus {
    outline: none;
    border-color: rgba(255,255,255,.85);
    box-shadow: 0 0 0 4px rgba(213,195,255,.45);
    background: #ffffff;
}

.hero-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 22px;
    border-radius: 18px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .45px;
    box-shadow: none;
    transition: transform .15s ease;
}

.hero-search-button-icon {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 50%;
    position: relative;
}

.hero-search-button-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 2px;
    background: rgba(255,255,255,.7);
    border-radius: 999px;
    right: -6px;
    bottom: 0;
    transform: rotate(45deg);
}

.hero-search-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: none;
}

/* ---- Search overlay (full-page, shown on form submit) ---- */

#searchOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(26, 14, 58, 0.93);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

#searchOverlay.active {
    display: flex;
}

.search-overlay-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 0 24px;
}

.search-overlay-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(255,255,255,.15);
    border-top-color: #c4a8ff;
    border-radius: 50%;
    animation: search-spin .75s linear infinite;
}

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

.search-overlay-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: .2px;
}

.search-overlay-sub {
    color: rgba(210,196,255,.65);
    font-size: 14px;
    font-weight: 500;
    margin: -10px 0 0;
    line-height: 1.5;
}

/* ---- Legacy inline loader (mantido para compatibilidade) ---- */

.hero-search-loader {
    display: none;
}

@media (max-width: 768px) {
    .hero-search-fields {
        flex-direction: column;
        align-items: center;
    }

    .hero-search-button {
        width: 100%;
    }

    #turnstile-container,
    .cf-turnstile {
        margin: 4px 0;
        width: 100%;
    }
}

.plate-error {
    color: #c0392b;
    font-size: 13px;
    margin-top: 6px;
    text-align: center;
    font-weight: 600;
}

/* ---- FAQ Accordion ---- */

                .faq-accordion {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                }

                .faq-accordion .wrap-collabsible {
                    margin: 0;
                    border: 1px solid rgba(190,161,244,.32);
                    border-radius: 24px;
                    background: linear-gradient(140deg, rgba(190,161,244,.12) 0%, #ffffff 70%, #f9f7ff 100%);
                    box-shadow: 0 18px 32px rgba(66,69,71,.14);
                    overflow: hidden;
                    transition: transform .18s ease, box-shadow .18s ease;
                }

                .faq-accordion .wrap-collabsible:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 24px 44px rgba(66,69,71,.18);
                }

                .faq-accordion .lbl-toggle {
                    background: transparent;
                    padding: 22px 26px;
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    border-radius: 0;
                }

                .faq-accordion .lbl-toggle::after {
                    filter: invert(22%) sepia(20%) saturate(948%) hue-rotate(215deg) brightness(95%) contrast(96%);
                }

                .faq-accordion .toggle:checked + .lbl-toggle {
                    background: rgba(190,161,244,.1);
                }

                .faq-accordion .collapsible-content {
                    transition: max-height .25s ease-in-out;
                }

                .faq-accordion .collapsible-content .content-inner {
                    background: rgba(245,245,255,.8);
                    border: none;
                    padding: 0 26px 24px 26px;
                }

                @media (max-width: 768px) {
                    .support-shell {
                        background: transparent !important;
                        border: none !important;
                        border-radius: 0 !important;
                        padding: 0 !important;
                        box-shadow: none !important;
                        margin-top: 0 !important;
                    }

                    .support-panel-card {
                        display: block !important;
                        width: 100% !important;
                        margin: 0 auto 24px auto !important;
                        max-width: 100% !important;
                    }

                    .support-grid {
                        display: block !important;
                        gap: 0 !important;
                    }

                    .support-col {
                        width: 100% !important;
                        margin: 0 !important;
                    }
                }
