/* =========================================================
   LOCALIZAÇÃO - PÁGINA FULL
========================================================= */

.dc-location-page {
    width: 100%;
    padding: 80px 24px;
    background: #f8fafc;
}

.dc-location-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.dc-location-header {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.dc-location-header p {
    max-width: 760px;
    margin: 0 auto;
}

/* CARD DAS INFORMAÇÕES */
.dc-location-card {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto 35px;
    padding: 38px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #edf2f7;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.dc-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dc-location-item {
    min-height: 145px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid #edf2f7;
    transition: .25s ease;
}

.dc-location-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.dc-location-item-full {
    grid-column: 2 / 3;
}

.dc-location-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, .25);
}

.dc-location-text span {
    display: block;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.dc-location-text strong {
    display: block;
    color: #07142e;
    font-size: 17px;
    line-height: 1.55;
}

/* MAPA EMBAIXO */
.dc-map-wrap {
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.dc-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* AÇÕES */
.dc-location-wrapper .dc-process-actions {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* RESPONSIVO */
@media(max-width: 1199px) {
    .dc-location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dc-location-item-full {
        grid-column: auto;
    }
}

@media(max-width: 767px) {
    .dc-location-page {
        padding: 60px 16px;
    }

    .dc-location-card {
        padding: 22px;
        border-radius: 22px;
    }

    .dc-location-grid {
        grid-template-columns: 1fr;
    }

    .dc-location-item {
        min-height: auto;
        padding: 24px 18px;
    }

    .dc-map-wrap {
        height: 420px;
    }
}