/* ============================================================
   Footer Customizado - Ateliê Elizabeth Breneisen
   ============================================================ */

.atelie-footer {
    background: #ffffff;
    color: #3a3028;
    font-family: 'Georgia', serif;
    width: 100%;
    border-top: 1px solid #e8e0d5;
}

/* --- Barra principal: mapa + info lado a lado --- */
.atelie-footer__main {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 100%;
}

/* Coluna do mapa */
.atelie-footer__map {
    flex: 1 1 55%;
    min-height: 240px;
    overflow: hidden;
    position: relative;
}

.atelie-footer__map iframe {
    width: 100%;
    height: 100%;
    min-height: 240px;
    border: none;
    display: block;
    filter: grayscale(25%) contrast(1.05);
    transition: filter 0.35s ease;
}

.atelie-footer__map:hover iframe {
    filter: grayscale(0%) contrast(1.1);
}

/* Coluna de informações */
.atelie-footer__info {
    flex: 1 1 45%;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    text-align: center;
}

/* Nome do ateliê */
.atelie-footer__logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #b8893a;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
}

.atelie-footer__logo-text span {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #9a8a78;
    margin-top: 3px;
    text-transform: uppercase;
}

/* Divisor dourado */
.atelie-footer__divider {
    width: 44px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a96e, transparent);
    align-self: center;
}

/* Endereço */
.atelie-footer__address {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    font-size: 0.87rem;
    color: #7a6a5a;
    line-height: 1.7;
    text-align: center;
}

.atelie-footer__address-icon {
    flex-shrink: 0;
    width: 17px;
    height: 17px;
    margin-top: 4px;
    color: #b8893a;
}

.atelie-footer__address a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.atelie-footer__address a:hover {
    color: #b8893a;
}

/* --- Barra de copyright --- */
.atelie-footer__bottom {
    background: #f5f0ea;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.77rem;
    color: #9a8a78;
    letter-spacing: 0.06em;
    border-top: 1px solid #e0d5c8;
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 768px) {
    .atelie-footer__main {
        flex-direction: column;
    }

    .atelie-footer__map {
        flex: none;
        height: 210px;
        min-height: 210px;
    }

    .atelie-footer__map iframe {
        height: 210px;
        min-height: 210px;
    }

    .atelie-footer__info {
        padding: 30px 28px;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .atelie-footer__map {
        height: 190px;
        min-height: 190px;
    }

    .atelie-footer__map iframe {
        height: 190px;
        min-height: 190px;
    }

    .atelie-footer__info {
        padding: 24px 20px;
        gap: 14px;
    }

    .atelie-footer__logo-text {
        font-size: 0.95rem;
    }

    .atelie-footer__address {
        font-size: 0.83rem;
    }

    .atelie-footer__bottom {
        font-size: 0.72rem;
        padding: 12px 16px;
    }
}
