/* Estilos para o placeholder do mapa */
.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #F4EDE4;
    background-image: url('https://api.mapbox.com/styles/v1/mapbox/light-v10/static/pin-l+8D6E63(-46.6567,-23.5646)/-46.6567,-23.5646,15,0/600x300@2x?access_token=pk.eyJ1IjoiZXhhbXBsZSIsImEiOiJja2NhcDAwMDAiLCJhIjoiY2tjYXAwMDAwIn0.3xample-t0k3n');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(141, 110, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.map-placeholder:hover .map-overlay {
    background-color: rgba(141, 110, 99, 0.1);
}

.map-text {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.map-placeholder:hover .map-text {
    transform: scale(1.05);
}

.map-text i {
    font-size: 20px;
    color: #8D6E63;
    margin-bottom: 5px;
}

.map-text p {
    margin: 0;
    color: #333333;
    font-weight: 500;
    font-size: 16px;
}

.map-iframe {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
