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

.crh-suggest {
    background: #f7f8fc;
}

.crh-suggest-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 20%, rgba(36, 205, 188, 0.24), transparent 28%),
        linear-gradient(135deg, #211732 0%, #2c1f42 58%, #1c152c 100%);
    color: #ffffff;
    padding: 68px 0 76px;
}

.crh-suggest-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffb000 0%, rgba(255, 176, 0, 0) 44%);
}

.crh-suggest-hero__inner {
    width: min(100% - 80px, 1040px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 132px;
    gap: 26px;
    align-items: center;
}

.crh-suggest-hero__eyebrow {
    align-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffb000;
    color: #211732;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.crh-suggest-hero__kicker {
    margin: 0 0 10px;
    color: #ffcf5b;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.crh-suggest-hero__title {
    max-width: 760px;
    margin: 0 0 14px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.04;
}

.crh-suggest-hero__text {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.04rem;
    line-height: 1.62;
}

.crh-suggest-hero__icon {
    width: 118px;
    height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.28));
}

.crh-suggest-form-section {
    padding: 48px 0 68px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
    scroll-margin-top: 60px;
}

.crh-suggest-form-section__inner {
    width: min(100% - 80px, 980px);
    margin: 0 auto;
}

.crh-suggest-alert {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
}

.crh-suggest-alert--success {
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.crh-suggest-alert--error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.crh-suggest-form {
    border: 1px solid #dbe4ee;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(19, 39, 67, 0.12);
    padding: 28px;
}

.crh-suggest-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.crh-suggest-field {
    min-width: 0;
}

.crh-suggest-field--full {
    grid-column: 1 / -1;
}

.crh-suggest-label {
    display: block;
    margin: 0 0 7px;
    color: #23314f;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.crh-suggest-input,
.crh-suggest-select,
.crh-suggest-textarea {
    display: block;
    width: 100%;
    border: 1px solid #cfd8e6;
    border-radius: 10px;
    background: #ffffff;
    color: #172033;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.crh-suggest-input,
.crh-suggest-select {
    height: 48px;
    padding: 0 14px;
}

.crh-suggest-select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.crh-suggest-textarea {
    min-height: 168px;
    padding: 13px 14px;
    resize: vertical;
}

.crh-suggest-input:focus,
.crh-suggest-select:focus,
.crh-suggest-textarea:focus {
    border-color: #ffb000;
    box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.18);
}

/* ── CUSTOM SELECT ──────────────────────────────────────── */
.cs-wrapper {
    position: relative;
    min-width: 0;
}

.cs-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #cfd8e6;
    border-radius: 10px;
    background: #ffffff;
    color: #172033;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.cs-trigger:hover {
    border-color: #b0bcce;
    background-color: #f8fafc;
}

.cs-trigger[aria-expanded="true"],
.cs-trigger:focus-visible {
    border-color: #ffb000;
    box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.18);
    outline: none;
}

.cs-trigger__text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cs-trigger__text--placeholder {
    color: #9aa5b8;
}

.cs-trigger__icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    color: #64748b;
    transition: transform 0.2s ease, color 0.18s ease;
}

.cs-wrapper.is-open .cs-trigger__icon {
    transform: rotate(180deg);
    color: #ffb000;
}

.cs-listbox {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 200;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(19, 39, 67, 0.14);
    max-height: 260px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.cs-wrapper.is-open .cs-listbox {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cs-option {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.97rem;
    color: #172033;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
}

.cs-option:hover {
    background: #fff8ed;
    color: #b87200;
}

.cs-option.is-selected {
    background: #ffb000;
    color: #fff;
    font-weight: 700;
}

.cs-option.is-selected:hover {
    background: #eb9200;
    color: #fff;
}

.cs-option--placeholder {
    color: #9aa5b8;
    font-style: italic;
}

.crh-suggest-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0 0;
    color: #687386;
    font-size: 1rem;
    line-height: 1.45;
    cursor: pointer;
}

.crh-suggest-check input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #ffb000;
    flex: 0 0 auto;
}

.crh-suggest-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    border: 0;
    border-radius: 999px;
    background: #ff9f00;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(255, 159, 0, 0.24);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.crh-suggest-submit:hover {
    background: #eb9200;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(255, 159, 0, 0.28);
}

/* ── NOTÍCIAS EM DESENVOLVIMENTO ─────────────────────────── */
.crh-noticias-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
    color: #fff;
    padding: 72px 0 80px;
    text-align: center;
}

.crh-noticias-hero__inner {
    width: min(100% - 48px, 860px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.crh-noticias-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 6px;
    background: #ffb000;
    color: #1a1a2e;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.crh-noticias-hero__title {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1.45;
}

.crh-noticias-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border: 2px solid #fff;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.18s ease, color 0.18s ease;
}

.crh-noticias-hero__cta:hover {
    background: #fff;
    color: #1a1a2e;
}

.crh-noticias-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 48px;
    align-items: start;
}

.crh-noticias-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
}

.crh-noticias-illustration img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 760px) {
    .crh-suggest-hero {
        padding: 48px 0 56px;
    }

    .crh-suggest-hero__inner,
    .crh-suggest-form-section__inner {
        width: min(100% - 32px, 980px);
    }

    .crh-suggest-hero__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .crh-suggest-hero__icon {
        width: 88px;
        height: 88px;
    }

    .crh-suggest-form-section {
        padding: 34px 0 48px;
    }

    .crh-suggest-form {
        padding: 20px;
    }

    .crh-suggest-form__grid {
        grid-template-columns: 1fr;
    }

    .crh-noticias-hero {
        padding: 48px 0 56px;
    }

    .crh-noticias-form-layout {
        grid-template-columns: 1fr;
    }

    .crh-noticias-illustration {
        display: none;
    }
}
