/* =========================================
   CONTACT PAGE — page CSS only
========================================= */
.contact-page .contact-hero {
    background: #ffffff;
    /* bege/nude amarelado como tu queres */
}

.contact-sub {
    max-width: 820px;
    margin: 12px auto 0;
    color: rgba(42, 30, 26, .75);
    line-height: 1.6;
}

/* Cards */
.contact-cards {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(180, 140, 70, .22);
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
    padding: 18px;
    text-decoration: none;
    color: inherit;
}

.cc-ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 140, 70, .10);
    color: rgba(180, 140, 70, .95);
    flex: 0 0 auto;
    font-size: 18px;
}

.cc-muted {
    margin-top: 4px;
    font-size: 13px;
    color: rgba(42, 30, 26, .65);
}

.contact-card--cta {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(180, 140, 70, .35);
    position: relative;
}

.contact-card--cta .cc-arrow {
    margin-left: auto;
    font-size: 18px;
    color: rgba(180, 140, 70, .95);
}

/* Mapa + Form */
.contact-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: stretch;
}

.contact-map {
    background: #fff;
    border: 1px solid rgba(180, 140, 70, .22);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
    min-height: 480px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-form {
    background: #f3ecdd;
    border: 1px solid rgba(180, 140, 70, .22);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
    padding: 22px;
}

.contact-form h3 {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: #2a1e1a;
}

.contact-form label {
    display: block;
    margin: 14px 0 8px;
    font-size: 14px;
    color: rgba(42, 30, 26, .78);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    outline: none;
    font: inherit;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(180, 140, 70, .60);
    box-shadow: 0 0 0 4px rgba(180, 140, 70, .15);
}

.btn-full {
    width: 100%;
}

/* Mobile */
@media (max-width: 900px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 320px;
    }
}

/* ===== Instagram badge dourado no footer ===== */
.contact-page .footer-social {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.contact-page .ig-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 140, 70, .16);
    color: rgba(180, 140, 70, .95);
    border: 1px solid rgba(180, 140, 70, .28);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

/* ===== Título e subtítulo centrados ===== */
.contact-page .section-title {
    text-align: center !important;
    color: #b8842b !important;
}

.contact-page .contact-sub {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Email sempre quebra dentro do card ===== */
.contact-page .contact-card strong {
    max-width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-page .contact-card strong,
.contact-page .contact-card .cc-muted {
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

/* ===== Instagram badge: fica abaixo do logo, sem quebrar footer ===== */
.contact-page .footer-brand .footer-social {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.contact-page .footer-brand .ig-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 140, 70, .16);
    color: rgba(180, 140, 70, .95);
    border: 1px solid rgba(180, 140, 70, .28);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

/* ===== Footer: Instagram abaixo do logo (global) ===== */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-social {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ig-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 140, 70, .16);
    color: rgba(180, 140, 70, .95);
    border: 1px solid rgba(180, 140, 70, .28);
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

/* ===== Mobile polish (contact) ===== */
@media (max-width: 600px) {
    .contact-page .contact-hero {
        padding-top: 18px;
    }

    .contact-page .contact-cards {
        gap: 12px;
    }

    .contact-page .contact-card {
        padding: 16px;
    }

    .contact-page .cc-ico {
        width: 42px;
        height: 42px;
    }

    .contact-page .contact-map {
        min-height: 300px;
    }

    .contact-page .contact-form {
        padding: 18px;
    }

    .contact-page .contact-form h3 {
        font-size: 26px;
    }

    /* botão sempre centrado e full */
    .contact-page .btn-full {
        width: 100%;
        justify-content: center;
    }
}