/* ==========================================================================
   Contato Localizacao — Endereco + Google Maps
   ========================================================================== */

.contato-loc {
    position: relative;
    background: var(--color-bg-light);
    padding-top: 164px;
    padding-bottom: 0;
    overflow: hidden;
}

/* Curva decorativa no topo */
.contato-loc__wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 127px;
    display: block;
}

/* --- Header: Titulo + Endereco --- */

.contato-loc__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px 64px;
    margin-bottom: 64px;
}

.contato-loc__text {
    flex: 1 1 480px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 768px;
}

.contato-loc__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #181D27;
}

.contato-loc__description {
    font-family: var(--font-text);
    font-size: 18px;
    line-height: 24px;
    color: #535862;
}

/* --- Address Card --- */

.contato-loc__address-card {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.contato-loc__address-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: #F8F9FC;
    border: 1px solid rgba(21, 94, 239, 0.39);
    border-radius: 4px;
    flex-shrink: 0;
}

.contato-loc__address-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contato-loc__address-street {
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #181D27;
}

.contato-loc__address-city {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 24px;
    color: #535862;
}

/* --- Google Maps --- */

.contato-loc__map-wrapper {
    position: relative;
    width: 100%;
    height: 516px;
    overflow: hidden;
}

.contato-loc__map {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Responsivo ===== */

@media (max-width: 1024px) {
    .contato-loc {
        padding-top: 120px;
    }

    .contato-loc__header {
        gap: 32px;
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {
    .contato-loc {
        padding-top: 100px;
    }

    .contato-loc__wave {
        height: 80px;
    }

    .contato-loc__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 32px;
    }

    .contato-loc__text {
        flex: none;
        width: 100%;
    }

    .contato-loc__title {
        font-size: 28px;
        line-height: 36px;
    }

    .contato-loc__description {
        font-size: 16px;
    }

    .contato-loc__map-wrapper {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .contato-loc {
        padding-top: 80px;
    }

    .contato-loc__wave {
        height: 50px;
    }

    .contato-loc__title {
        font-size: 24px;
        line-height: 32px;
    }

    .contato-loc__address-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contato-loc__map-wrapper {
        height: 280px;
    }
}
