#mapa-clientes{

    width:100%;

    height:70vh;

    min-height:350px;

    max-height:700px;

    border-radius:12px;

    overflow:hidden;
}

/* Tablet */

@media (max-width:1024px){

    #mapa-clientes{

        height:60vh;

    }

}

/* Celulares */

@media (max-width:768px){

    #mapa-clientes{

        height:50vh;

        min-height:320px;

    }

}

.leaflet-popup-content {
    margin: 0;
    min-width: 280px;
}

.cliente-popup {
    font-family: Arial, sans-serif;
}

.cliente-popup-header {
    background: #2E7D32;
    color: #fff;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
}

.cliente-popup-body {
    padding: 16px;
}

.cliente-popup-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #444;
    font-size: 14px;
}

.cliente-popup-item span {
    margin-right: 10px;
    font-size: 16px;
}

.cliente-popup a {
    color: #2E7D32;
    text-decoration: none;
}

.cliente-popup a:hover {
    text-decoration: underline;
}

.cliente-popup-footer {
    padding: 12px 16px;
    background: #f7f7f7;
    border-top: 1px solid #ddd;
    text-align: center;
    border-radius: 0 0 12px 12px;
}

.cliente-popup-button {
    display: inline-block;
    background: #2E7D32;
    color: white !important;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.cliente-popup-button:hover {
    background: #1d4ed8;
}

.empresa-marker {
    position: relative;
    width: 46px;
    height: 46px;
    background: #2E7D32;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid white;
    box-shadow: 0 6px 15px rgba(0,0,0,.35);
    display:flex;
    align-items:center;
    justify-content:center;

    transition:.2s;
}

.empresa-marker i{
    transform: rotate(45deg);
    color:white;
    font-size:18px;
}

.empresa-marker:hover{
    transform: rotate(-45deg) scale(1.12);
    box-shadow:0 8px 18px rgba(0,0,0,.45);
    cursor:pointer;
}

.leaflet-top,
.leaflet-bottom {
    z-index: 400 !important;
}

.leaflet-control {
    z-index: 400 !important;
}

.leaflet-pane {
    z-index: 200 !important;
}

.cluster-marker{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#2E7D32;
    border:4px solid white;
    color:white;
    font-weight:bold;
    font-size:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 4px 12px rgba(0,0,0,.35);
    transition:.2s;
}

.cluster-marker:hover{
    transform:scale(1.1);
}