/* =====================================================
   FALE-CONOSCO.CSS
   Paleta: --cor-site-1 #dcb962 | --cor-site-2 #c89938
           --cor-site-3 #0673c3 | --cor-site-5 #252525
           --cor-site-6 #fff
   Fundo branco, textos em preto/azul/dourado
   ===================================================== */

/* ── BASE ───────────────────────────────────────────── */
.fc-content,
.fc-unit,
.fc-formCard,
.fc-btn {
    box-sizing: border-box;
}

/* ── BOTÕES ─────────────────────────────────────────── */
.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    user-select: none;
    cursor: pointer;
    border: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    position: relative;
    overflow: hidden;
}

.fc-btn--primary {
    background: var(--cor-site-1);
    color: var(--cor-site-5) !important;
    border: 1.5px solid var(--cor-site-1);
    box-shadow: 0 6px 20px rgba(220, 185, 98, 0.30);
}

.fc-btn--primary:hover {
    background: var(--cor-site-2);
    border-color: var(--cor-site-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(200, 153, 56, 0.38);
    color: var(--cor-site-5) !important;
    text-decoration: none;
}

/* ── SEÇÃO DE CONTEÚDO ──────────────────────────────── */
.fc-content {
    padding: 70px 0;
    background: #fff;
}

.fc-content__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.fc-content__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--cor-site-6);
    background: var(--cor-site-1);
    border: 1px solid var(--cor-site-1);
    margin-bottom: 16px;
}

.fc-content__title {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 900;
    color: var(--cor-site-5);
    line-height: 1.12;
}

.fc-content__title span {
    color: var(--cor-site-3);
    font-weight: 400;
}

.fc-content__subtitle {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.70;
}

.fc-content__divider {
    width: 56px;
    height: 3px;
    border-radius: 99px;
    background: var(--cor-site-1);
    margin-top: 18px;
}

/* ── CARD DE UNIDADE ────────────────────────────────── */
.fc-unit {
    background: #fff;
    border: 1px solid rgba(37, 37, 37, 0.10);
    border-radius: 5px;
    box-shadow: 0 2px 14px rgba(37, 37, 37, 0.05);
    padding: 26px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.fc-unit:hover {
    border-color: rgba(6, 115, 195, 0.22);
    box-shadow: 0 6px 24px rgba(6, 115, 195, 0.08);
}

.fc-unit::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 185, 98, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.fc-unit__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.fc-unit__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(220, 185, 98, 0.10);
    border: 1px solid rgba(220, 185, 98, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-site-2);
    font-size: 18px;
    flex-shrink: 0;
}

.fc-unit__name {
    font-size: 17px;
    font-weight: 800;
    color: var(--cor-site-5);
    line-height: 1.2;
}

.fc-unit__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.fc-unit__row i {
    color: var(--cor-site-1);
    margin-top: 2px;
    font-size: 13px;
    flex-shrink: 0;
}

.fc-unit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(37, 37, 37, 0.08);
    position: relative;
    z-index: 1;
}

.fc-unit__btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.fc-unit__btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.fc-unit__btn--whats {
    color: #1a9e4e;
    background: transparent;
    border: 1px solid rgba(37, 211, 102, 0.26);
}

.fc-unit__btn--whats:hover {
    color: #138c42;
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.40);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.12);
}

.fc-unit__btn--maps {
    color: var(--cor-site-3);
    background: transparent;
    border: 1px solid rgba(6, 115, 195, 0.26);
}

.fc-unit__btn--maps:hover, .fc-unit__btn--maps:focus {
    color: #fff;
    transform: translateY(-3px);
    background: var(--cor-site-3);
}

/* ── MAPA EMBED ─────────────────────────────────────── */
.fc-mapa {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(37, 37, 37, 0.10);
    box-shadow: 0 4px 18px rgba(37, 37, 37, 0.07);
}

.fc-mapa iframe {
    display: block;
}

/* ── CARD DO FORMULÁRIO ─────────────────────────────── */
.fc-formCard {
    background: #fff;
    border: 1px solid rgba(37, 37, 37, 0.10);
    border-radius: 6px;
    box-shadow: 0 4px 28px rgba(37, 37, 37, 0.07);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.fc-formCard::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 185, 98, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.fc-formCard__head {
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.fc-formCard__kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--cor-site-6);
    background: var(--cor-site-1);
    border: 1px solid var(--cor-site-1);
    margin-bottom: 10px;
}

.fc-formCard__title {
    margin: 0 0 6px;
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 900;
    color: var(--cor-site-5);
}

.fc-formCard__sub {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* ── FORMULÁRIO ─────────────────────────────────────── */
.fc-form {
    position: relative;
    z-index: 1;
}

.fc-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fc-form__grid--full {
    grid-column: 1 / -1;
}

.fc-form__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.fc-form__label {
    display: block;
    margin: 0 0 6px;
    font-size: 11px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--cor-site-3);
    font-weight: 800;
}

.fc-form__input,
.fc-form__textarea,
.fc-form__select {
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid rgba(37, 37, 37, 0.14);
    padding: 12px 14px;
    background: #fafafa;
    color: var(--cor-site-5);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    appearance: none;
    -webkit-appearance: none;
}

.fc-form__input::placeholder,
.fc-form__textarea::placeholder {
    color: #aaa;
}

.fc-form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230673c3' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #fafafa;
    padding-right: 36px;
    cursor: pointer;
}

.fc-form__select option {
    background: #fff;
    color: var(--cor-site-5);
}

.fc-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.fc-form__input:focus,
.fc-form__textarea:focus,
.fc-form__select:focus {
    outline: none;
    border-color: var(--cor-site-3);
    box-shadow: 0 0 0 4px rgba(6, 115, 195, 0.10);
    background: #fff;
}

.fc-form__submit {
    height: 48px;
    font-size: 15px;
    min-width: 200px;
}

/* Trust badges */
.fc-formCard__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(37, 37, 37, 0.08);
    position: relative;
    z-index: 1;
}

.fc-formCard__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    background: #f8f9fb;
    border: 1px solid rgba(6, 115, 195, 0.18);
    color: var(--cor-site-5);
    font-weight: 700;
    font-size: 12px;
}

.fc-formCard__trust i {
    color: var(--cor-site-1);
    font-size: 11px;
}

/* ── RESPONSIVO ────────────────────────────────────── */
@media (max-width: 992px) {
    .fc-content__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fc-content {
        padding: 56px 0;
    }

    .fc-formCard {
        padding: 28px 22px;
    }
}

@media (max-width: 576px) {
    .fc-unit {
        padding: 20px 18px;
    }

    .fc-form__submit {
        width: 100%;
        justify-content: center;
    }

    .fc-unit__actions {
        flex-direction: column;
    }

    .fc-unit__btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   SELECT CUSTOMIZADO — tema claro
========================================================= */

.fc-custom-select {
    position: relative;
    width: 100%;
    z-index: 30;
}

.fc-native-select {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.fc-custom-select__trigger {
    position: relative;
    width: 100%;
    min-height: 48px;
    padding: 0 54px 0 14px;
    border: 1.5px solid rgba(37, 37, 37, 0.14);
    border-radius: 4px;
    background: transparent;
    color: var(--cor-site-5);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}

.fc-custom-select__trigger:hover {
    border-color: rgba(6, 115, 195, 0.30);
    background: #fff;
}

.fc-custom-select.is-open .fc-custom-select__trigger,
.fc-custom-select__trigger:focus-visible {
    outline: none;
    border-color: var(--cor-site-3);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(6, 115, 195, 0.10);
}

/* separador vertical antes do ícone */
.fc-custom-select__trigger::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 44px;
    width: 1px;
    background: rgba(37, 37, 37, 0.10);
}

.fc-custom-select__value {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--cor-site-5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-custom-select.is-placeholder .fc-custom-select__value {
    color: #aaa;
    font-weight: 400;
}

.fc-custom-select__icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--cor-site-3);
    font-size: 12px;
    transition: transform .22s ease, color .22s ease;
    pointer-events: none;
}

.fc-custom-select.is-open .fc-custom-select__icon {
    transform: translateY(-50%) rotate(180deg);
}

.fc-custom-select__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 6px;
    border: 1px solid rgba(37, 37, 37, 0.10);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(37, 37, 37, 0.12), 0 4px 12px rgba(37, 37, 37, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    pointer-events: none;
    z-index: 9999;
}

.fc-custom-select.is-open .fc-custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.fc-custom-select__option {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--cor-site-5);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.fc-custom-select__option:hover {
    background: rgba(6, 115, 195, 0.06);
    color: var(--cor-site-3);
}

.fc-custom-select__option.is-selected {
    background: rgba(220, 185, 98, 0.10);
    color: var(--cor-site-5);
    font-weight: 700;
}

.fc-custom-select__option.is-selected::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    font-size: 11px;
    color: var(--cor-site-2);
}

@media (max-width: 767px) {
    .fc-custom-select__trigger {
        min-height: 46px;
        padding: 0 50px 0 14px;
    }

    .fc-custom-select__trigger::before {
        right: 40px;
    }

    .fc-custom-select__option {
        font-size: 13.5px;
    }
}