/* ============================
   HERO SUPER CLEAN
============================ */
.fc-hero {
    background: #f5fdf7;
    text-align: center;
    padding: 60px 0 40px;
}

.fc-hero h1 {
    font-size: 38px;
    color: #064d23;
    font-weight: 700;
}

.fc-hero p {
    font-size: 17px;
    color: #355e44;
    margin-top: 8px;
}

.fc-breadcrumb {
    margin-top: 15px;
    font-size: 14px;
    color: #6a7f73;
}

.fc-breadcrumb a {
    color: #0b6623;
    text-decoration: none;
}

.fc-breadcrumb span {
    margin: 0 6px;
}

/* ============================
   GRID PRINCIPAL (FORM + CARDS)
============================ */
.fc-main {
    padding: 60px 0;
}

.fc-grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ============================
   FORMULÁRIO PRINCIPAL
============================ */
.fc-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8efeb;
}

.fc-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #064d23;
    margin-bottom: 20px;
}

.fc-input {
    margin-bottom: 18px;
}

.fc-input label {
    display: block;
    color: #064d23;
    margin-bottom: 4px;
    font-weight: 600;
}

.fc-input input,
.fc-input select,
.fc-input textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #cbd9d1;
    font-size: 15px;
    transition: .25s;
    background: #fff;
}

.fc-input input:focus,
.fc-input select:focus,
.fc-input textarea:focus {
    border-color: #0b6623;
    box-shadow: 0 0 4px rgba(11, 102, 35, 0.3);
}

/* BOTÃO DO FORMULÁRIO */
.fc-btn {
    width: 100%;
    background: #064d23;
    border: none;
    padding: 14px;
    color: #fff;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    transition: .3s;
    cursor: pointer;
}

.fc-btn:hover {
    background: #0b7d34;
}

/* ALERTAS */
.alert {
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert.sucesso {
    background: #d9f5df;
    border: 1px solid #3ca35b;
    color: #1e5c33;
}

.alert.erro {
    background: #ffe1e1;
    border: 1px solid #d9534f;
    color: #993333;
}

/* CAPTCHA */
.fc-captcha {
    margin: 18px 0;
}

/* ============================
   CARDS DE CONTATO (COLUNA DIREITA)
============================ */
.fc-contact-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f0;
    transition: .25s;
    cursor: pointer;
}

.fc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.12);
}

.fc-card h4 {
    margin: 10px 0 4px;
    color: #064d23;
    font-weight: 600;
}

.fc-card p {
    color: #355e44;
}

.fc-icon span {
    font-size: 36px;
    color: #0b6623;
}

/* ============================
   MAPA
============================ */
.fc-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    border: none;
    margin: 40px 0;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.10);
}

/* ============================
   RESPONSIVIDADE
============================ */
@media (max-width: 900px) {
    .fc-grid-2 {
        grid-template-columns: 1fr;
    }

    .fc-contact-column {
        order: 2;
    }

    .fc-form-card {
        order: 1;
    }

    .fc-hero h1 {
        font-size: 28px;
    }
}
.fc-map-button h4 {
    color: #0b6623;
}

.fc-map-button .fa-map-location-dot {
    color: #0b6623;
    font-size: 36px;
}