/* ============================================================
   footer.css — MDJunior Produções
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Lato:wght@300;400&display=swap');

/* ---------- layout principal ---------- */
.site-footer {
    background-color: #1a1a1a;
    color: #e0d6c8;
    padding: 56px 24px 0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.footer-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

/* ---------- separador decorativo superior ---------- */
.footer-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c8a96e, #e2c88a, #c8a96e);
    margin: 0 auto 40px;
    border: none;
}

/* ---------- logo + slogan ---------- */
.footer-brand {
    margin-bottom: 32px;
}

.footer-logo {
    max-height: 72px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1) opacity(0.9);
}

.footer-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #c8a96e;
    line-height: 1.5;
    margin: 0;
}

/* ---------- dados da empresa ---------- */
.footer-info {
    margin-bottom: 40px;
    line-height: 1.9;
}

.footer-company-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f0e8d8;
    margin: 0 0 4px;
}

.footer-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #9a9080;
    letter-spacing: 0.02em;
}

/* ---------- linha dourada separadora ---------- */
.footer-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3a3228, transparent);
    border: none;
    margin: 0;
}

/* ---------- crédito do desenvolvedor ---------- */
.footer-dev {
    padding: 14px 0 18px;
    font-size: 0.72rem;
    color: #555048;
    letter-spacing: 0.05em;
}

.footer-dev a {
    color: #6e6458;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-dev a:hover {
    color: #c8a96e;
}