/* =====================================================
   FALE-CONOSCO.CSS
   Padrão visual: empresa.css — Paleta Dourado/Gold
   ===================================================== */

/* ── BASE ───────────────────────────────────────────── */
.fc-hero,
.fc-content,
.fc-unit,
.fc-formCard,
.fc-btn {
    box-sizing: border-box;
}

/* ── HERO ─────────────────────────────────────────── */
.fc-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.fc-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;
}

.fc-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to left, #9e8149 5%, #ccba78 60%, #dfd69e 69%, #ccba78 75%, #9e8149 100%) !important;
    border: 1px solid rgba(158, 129, 73, 0.22);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.fc-hero__pill i {
    color: #fff;
    font-size: 11px;
}

.fc-hero__titulo {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.fc-hero__titulo-leve {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    display: block;
}

.fc-hero__sub {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 0;
    color: var(--cor-site-1);
}

/* Números — grid 4 colunas com borda (padrão empresa.css) */
.fc-hero__numeros {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 740px;
    background: transparent;
    border: none;
    padding: 0;
}

.fc-hero__num {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(2, 8, 40, 0.05);
    backdrop-filter: blur(10px);
    transition: transform .2s ease, box-shadow .2s ease;
}

.fc-hero__num:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(2, 8, 40, 0.08);
}

.fc-hero__num-sep {
    display: none;
}

.fc-hero__num-val {
    font-size: 1.65rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.fc-hero__num-val small {
    font-size: .85rem;
    font-weight: 700;
    opacity: .72;
}

.fc-hero__num-leg {
    font-size: 11px;
    font-weight: 800;
    color: var(--cor-site-1);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-top: 0;
}

/* ── 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, color .15s ease;
    position: relative;
    overflow: hidden;
}

.fc-btn--primary {
    background: linear-gradient(135deg, #ccba78 20%, #e7e4d2 35%, #9e8149 70%, #ccba78 100%);
    color: #181818 !important;
    border: 1.5px solid #ccba78;
    box-shadow: 0 8px 22px rgba(204, 186, 120, 0.32);
}

.fc-btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.fc-btn--primary:hover::after {
    left: 100%;
}

.fc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(204, 186, 120, 0.45);
    color: #181818 !important;
    text-decoration: none;
}

/* ── SEÇÃO DE CONTEÚDO ──────────────────────────────── */
.fc-content {
    padding: 0 60px 0;
    background: transparent;
}

.fc-content__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

/* ── HEADER DA SEÇÃO ────────────────────────────────── */
.fc-content__header {
    margin-bottom: 28px;
}

.fc-content__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(to left, #9e8149 5%, #ccba78 60%, #dfd69e 69%, #ccba78 75%, #9e8149 100%) !important;
    border: 1px solid rgba(158, 129, 73, 0.22);
    margin-bottom: 16px;
}

.fc-content__title {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
}

.fc-content__title span {
    color: var(--cor-site-1);
    font-weight: 400;
}

.fc-content__subtitle {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.70;
    max-width: 52ch;
}

.fc-content__divider {
    width: 56px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #9e8149, #ccba78);
    margin-top: 18px;
}

/* ── CARD DE UNIDADE ────────────────────────────────── */
.fc-unit {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 14px 34px rgba(0, 0, 0, 0.14);
    padding: 26px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

/* brilho sutil */
.fc-unit::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 186, 120, 0.08) 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(209, 186, 111, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d3bb70;
    font-size: 18px;
    flex-shrink: 0;
}

.fc-unit__name {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.fc-unit__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.fc-unit__row i {
    color: #d3bb70;
    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(255, 255, 255, 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;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.fc-unit__btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.fc-unit__btn--whats {
    color: #1f9d55;
    background: transparent;
    border: 1px solid rgba(37, 211, 102, 0.22);
}

.fc-unit__btn--whats:hover {
    color: #178f49;
    background: rgba(37, 211, 102, 0.06);
    border-color: rgba(37, 211, 102, 0.34);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.15);
}

.fc-unit__btn--maps {
    color: var(--cor-site-1);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.74);
}

.fc-unit__btn--maps:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(204, 186, 120, 0.34);
    box-shadow: 0 6px 18px rgba(204, 186, 120, 0.15);
}

/* ── MAPA EMBED ─────────────────────────────────────── */
.fc-mapa {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.fc-mapa iframe {
    display: block;
}

/* ── CARD DO FORMULÁRIO ─────────────────────────────── */
.fc-formCard {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 20px 54px rgba(0, 0, 0, 0.16);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.fc-formCard::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 186, 120, 0.07) 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: #fff;
    background: linear-gradient(to left, #9e8149 5%, #ccba78 60%, #dfd69e 69%, #ccba78 75%, #9e8149 100%) !important;
    border: 1px solid rgba(158, 129, 73, 0.22);
    margin-bottom: 10px;
}

.fc-formCard__title {
    margin: 0 0 6px;
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 900;
    color: #fff;
}

.fc-formCard__sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

/* ── FORMULÁRIO ─────────────────────────────────────── */
.fc-form {
    position: relative;
    z-index: 1;
}

.fc-form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 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-1);
    font-weight: 800;
}

.fc-form__input,
.fc-form__textarea,
.fc-form__select {
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    padding: 12px 14px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    appearance: none;
    -webkit-appearance: none;
    backdrop-filter: blur(4px);
}

.fc-form__input::placeholder,
.fc-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.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='%23ccba78' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: rgba(255, 255, 255, 0.05);
    padding-right: 36px;
    cursor: pointer;
    color: #fff;
}

.fc-form__select option {
    background: #1a1a2e;
    color: #fff;
}

.fc-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.fc-form__input:focus,
.fc-form__textarea:focus,
.fc-form__select:focus {
    outline: none;
    border-color: rgba(204, 186, 120, 0.55);
    box-shadow: 0 0 0 4px rgba(204, 186, 120, 0.10);
    background: rgba(255, 255, 255, 0.08);
}

.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(255, 255, 255, 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: transparent;
    border: 1px solid rgba(255, 255, 255, 0.74);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 12px;
    backdrop-filter: blur(8px);
}

.fc-formCard__trust i {
    color: #d3bb70;
    font-size: 11px;
}

/* ── RESPONSIVO ────────────────────────────────────── */
@media (max-width: 1100px) {
    .fc-hero__numeros {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .fc-hero {
        padding: 82px 0 42px;
    }

    .fc-content__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fc-hero__titulo {
        font-size: 2.2rem;
    }

    .fc-hero__sub {
        font-size: .98rem;
    }

    .fc-content {
        padding: 56px 0 64px;
    }

    .fc-formCard {
        padding: 28px 22px;
    }
}

@media (max-width: 576px) {
    .fc-hero {
        padding: 74px 0 36px;
    }

    .fc-hero__numeros {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fc-hero__num {
        padding: 18px 16px;
    }

    .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;
    }
}

/* =========================================================
   dropdown customizado - formulário de contato
========================================================= */

.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 60px 0 18px;
    border: 1px solid #6c6753;
    border-radius: 11px;
    background: transparent;
    color: #1b1b1b;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.fc-custom-select__trigger:hover {
    border-color: #8a846f;
    background: transparent;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
}

.fc-custom-select.is-open .fc-custom-select__trigger,
.fc-custom-select__trigger:focus-visible {
    outline: none;
    border-color: #ccba78;
    background: transparent;
    box-shadow:
        0 0 0 4px rgba(204, 186, 120, 0.14),
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.fc-custom-select__trigger::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 44px;
    width: 1px;
    background: linear-gradient(
        180deg,
        rgba(204, 186, 120, 0),
        rgba(204, 186, 120, 0.45),
        rgba(204, 186, 120, 0)
    );
}

.fc-custom-select__value {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
    color: #f4efe1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-custom-select.is-placeholder .fc-custom-select__value {
    color: rgba(244, 239, 225, 0.72);
    font-weight: 400;
}

.fc-custom-select__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #d9c68c;
    font-size: 12px;
    transition: transform 0.25s ease, color 0.25s ease;
    pointer-events: none;
}

.fc-custom-select.is-open .fc-custom-select__icon {
    transform: translateY(-50%) rotate(180deg);
    color: #f0ddb0;
}

.fc-custom-select__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 8px;
    border: 1px solid rgba(204, 186, 120, 0.22);
    border-radius: 14px;
    background: #fff;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.26),
        0 6px 18px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s 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: 11px 14px;
    display: flex;
    align-items: center;
    text-align: left;
    color: #181818;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fc-custom-select__option:hover {
    background: linear-gradient(135deg, rgba(204, 186, 120, 0.24), rgba(204, 186, 120, 0.11));
    color: #181818;
    box-shadow: inset 0 0 0 1px rgba(204, 186, 120, 0.18);
    transform: translateX(2px);
}

.fc-custom-select__option.is-selected {
    background: linear-gradient(135deg, rgba(204, 186, 120, 0.24), rgba(204, 186, 120, 0.11));
    color: #181818;
    box-shadow: inset 0 0 0 1px rgba(204, 186, 120, 0.18);
}

.fc-custom-select__option.is-selected::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    font-size: 12px;
    color: #7a6431;
}

@media (max-width: 767px) {
    .fc-custom-select__trigger {
        min-height: 46px;
        padding: 0 54px 0 16px;
    }

    .fc-custom-select__trigger::before {
        right: 40px;
    }

    .fc-custom-select__icon {
        right: 14px;
    }

    .fc-custom-select__option {
        font-size: 13.5px;
    }
}