/* =========================================================
   PÁGINA: FALE CONOSCO — SANTARÉM ASSESSORIA IMOBILIÁRIA
   Padrão visual: idêntico ao empresa.css / nossa-empresa.php
   Paleta: var(--cor-site-1) | var(--cor-site-2) | var(--cor-site-3)
   ========================================================= */

/* =========================
   HERO
   ========================= */
.fc-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: var(--cor-site-2);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.fc-content__grid {
    gap: 11px !important;
}

.fc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,15,.82) 0%, rgba(15,15,15,.55) 100%);
}

.fc-hero__inner {
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.fc-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214,151,67,.18);
    border: 1px solid rgba(214,151,67,.45);
    color: var(--cor-site-1);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.fc-hero__pill i { font-size: 11px; }

.fc-hero__titulo {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 18px;
}

.fc-hero__titulo-leve {
    color: var(--cor-site-1);
    font-weight: 900;
    display: block;
}

.fc-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 560px;
}

.fc-hero__numeros {
    display: flex;
    align-items: center;
    gap: 32px;
}

.fc-hero__num {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
}

.fc-hero__num-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.2);
    flex-shrink: 0;
}

.fc-hero__num-val {
    font-size: 28px;
    font-weight: 900;
    color: var(--cor-site-1);
    line-height: 1;
    letter-spacing: -1px;
}

.fc-hero__num-val small {
    font-size: .85rem;
    font-weight: 600;
    opacity: .8;
}

.fc-hero__num-leg {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .fc-hero__numeros { gap: 20px; }
}

/* =========================
   BOTÕES
   ========================= */
.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    user-select: none;
    transition: background .25s, transform .25s, box-shadow .25s;
    cursor: pointer;
    border: none;
}

.fc-btn--primary {
    color: #fff;
    background: var(--cor-site-1);
}

.fc-btn--primary:hover {
    background: #bf8530;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* =========================
   SEÇÃO DE CONTEÚDO
   ========================= */
.fc-content {
    padding: 50px 0;
    background: transparent;
}

.fc-content__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4px;
    align-items: start;
}

@media (max-width: 992px) {
    .fc-content__grid { grid-template-columns: 1fr; }
}

/* =========================
   HEADER DA SEÇÃO
   ========================= */
.fc-content__header {
    margin-bottom: 28px;
}

.fc-content__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--cor-site-1);
    background: rgba(214,151,67,.13);
    border: 1px solid rgba(214,151,67,.3);
    margin-bottom: 16px;
}

.fc-content__title {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 900;
    color: var(--cor-site-2);
    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: #555;
    line-height: 1.70;
    max-width: 52ch;
}

.fc-content__divider {
    width: 56px;
    height: 3px;
    border-radius: 99px;
    background: var(--cor-site-1);
    margin-top: 18px;
}

/* =========================
   CARDS DE BENEFÍCIOS
   ========================= */
.fc-beneficios {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.fc-beneficio {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--cor-site-3);
    border: 1px solid #dedede;
    border-radius: 7px;
    padding: 18px 20px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.fc-beneficio:hover {
    border-color: rgba(214,151,67,.45);
    box-shadow: 0 6px 22px rgba(214,151,67,.14);
    transform: translateX(4px);
}

.fc-beneficio__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(214,151,67,.13);
    border: 1px solid rgba(214,151,67,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-site-1);
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 1px;
}

.fc-beneficio__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-beneficio__body strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--cor-site-2);
    line-height: 1.2;
}

.fc-beneficio__body p {
    margin: 0;
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
}

/* =========================
   CANAIS DE CONTATO RÁPIDO
   ========================= */
.fc-canais {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.fc-canal {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--cor-site-3);
    border: 1px solid #dedede;
    border-radius: 7px;
    padding: 12px;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.fc-canal:hover {
    border-color: var(--cor-site-1);
    box-shadow: 0 6px 20px rgba(214,151,67,.18);
    transform: translateX(4px);
    text-decoration: none;
}

.fc-canal__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(214,151,67,.14);
    border: 1px solid rgba(214,151,67,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-site-1);
    font-size: 17px;
    flex-shrink: 0;
}

.fc-canal--whats .fc-canal__icon {
    background: rgba(37,211,102,.12);
    border-color: rgba(37,211,102,.3);
    color: #25d366;
}

.fc-canal__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    line-height: 1;
    margin-bottom: 4px;
}

.fc-canal__val {
    font-size: 15px;
    font-weight: 700;
    color: var(--cor-site-2);
    line-height: 1;
}

/* =========================
   CARD DE UNIDADE
   ========================= */
.fc-unit {
    background: var(--cor-site-3);
    border: 1px solid #dedede;
    border-radius: 7px;
    padding: 24px;
    margin-bottom: 16px;
}

.fc-unit__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.fc-unit__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(214,151,67,.14);
    border: 1px solid #bababa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-site-1);
    font-size: 18px;
    flex-shrink: 0;
}

.fc-unit__name {
    font-size: 17px;
    font-weight: 800;
    color: var(--cor-site-2);
    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;
}

.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;
}

.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 .2s, box-shadow .2s;
    white-space: nowrap;
}

.fc-unit__btn:hover { transform: translateY(-1px); text-decoration: none; }

.fc-unit__btn--whats {
    color: #fff;
    background: #25d366;
    border: 1px solid transparent;
}

.fc-unit__btn--whats:hover {
    color: #fff;
}

.fc-unit__btn--maps {
    color: var(--cor-site-1);
    background: rgba(214,151,67,.10);
    border: 1px solid rgba(214,151,67,.25);
}

.fc-unit__btn--maps:hover {
    background: rgba(214,151,67,.18);
    color: var(--cor-site-1);
    box-shadow: 0 6px 18px rgba(214,151,67,.20);
}

/* =========================
   MAPA EMBED
   ========================= */
.fc-mapa {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #bababa;
    box-shadow: 0 6px 24px rgba(0,0,0,.07);
}

.fc-mapa iframe { display: block; }

/* =========================
   CARD DO FORMULÁRIO
   ========================= */
.fc-formCard {
    background: var(--cor-site-3);
    border-radius: 7px;
    border: 1px solid #dedede;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.fc-formCard__head {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.fc-formCard__kicker {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--cor-site-1);
    background: rgba(214,151,67,.13);
    border: 1px solid rgba(214,151,67,.3);
    margin-bottom: 10px;
}

.fc-formCard__title {
    margin: 0 0 6px;
    font-size: clamp(18px, 1.8vw, 26px);
    font-weight: 900;
    color: var(--cor-site-2);
}

.fc-formCard__sub {
    margin: 0;
    color: #666;
    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;
    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 5px;
    font-size: 11px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--cor-site-2);
    font-weight: 700;
}

.fc-form__input,
.fc-form__textarea,
.fc-form__select {
    width: 100%;
    border-radius: 4px;
    border: 1.5px solid #dedede;
    padding: 11px 14px;
    background: #fff;
    color: #333;
    font-size: 14px;
    transition: border-color .15s, box-shadow .15s;
    appearance: none;
    font-family: inherit;
}

.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='%23D69743' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.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-1);
    box-shadow: 0 0 0 5px rgba(214,151,67,.12);
}

.fc-form__input::placeholder,
.fc-form__textarea::placeholder {
    color: rgba(0,0,0,.38);
}

.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: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,.06);
    position: relative;
    z-index: 1;
}

.fc-formCard__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(214,151,67,.08);
    border: 1px solid rgba(214,151,67,.25);
    color: var(--cor-site-2);
    font-weight: 700;
    font-size: 12px;
}

.fc-formCard__trust i {
    color: var(--cor-site-1);
    font-size: 11px;
}

@media (max-width: 1200px) {
    .fc-hero{padding: 0 15px}
}

@media (max-width: 992px) {
    .fc-canais { flex-direction: column; }
}

@media (max-width: 576px) {
    .fc-formCard { padding: 20px; }
    .fc-unit { padding: 18px; }
    .fc-form__submit { width: 100%; justify-content: center; }
    .fc-canal { padding: 14px 16px; }
}
