/* ============================
   PAGE: LOCALIZAÇÃO
   ============================ */

.location-hero {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: #fff;
}

.location-hero .section-head h1,
.location-hero .section-head p {
    color: #ffffff;
}

.location-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.location-main .section-head {
    margin-bottom: 24px;
}

.location-card {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.location-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--text);
}

.location-card p {
    line-height: 1.7;
}

.location-info {
    display: grid;
    gap: 16px;
}

.location-info-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.location-info-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.location-info-item a:hover {
    text-decoration: underline;
}

.location-visit-btn {
    margin-top: 16px;
}

.location-grid {
    margin-top: 0;
}

.location-info-card {
    text-align: left;
}

.location-info-card h3 {
    margin-top: 0;
}

.location-info-card p {
    color: var(--text);
    line-height: 1.7;
}

.location-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.map {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #fff;
}

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

@media (max-width: 880px) {
    .location-layout {
        grid-template-columns: 1fr;
    }

    .map {
        height: 320px;
    }
}

@media (max-width: 420px) {
    .map {
        height: 260px;
        border-radius: var(--radius-md);
    }

    .location-card {
        padding: 18px;
    }

    .location-actions .btn {
        width: 100%;
        text-align: center;
    }
}