/**
 * Estilos para el mapa de abogados (Google Maps).
 */

#fijezaya-google-map {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* InfoWindow Styling */
.fijezaya-map-infowindow {
    max-width: 320px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    padding: 0;
}

.fijezaya-iw-image {
    margin: -1px -1px 15px -1px;
    /* Compensar padding interno de Google Maps */
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    height: 160px;
    position: relative;
}

.fijezaya-iw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fijezaya-iw-image:hover img {
    transform: scale(1.05);
}

.fijezaya-iw-content {
    padding: 0 20px 20px 20px;
    /* Más margen interno */
}

.fijezaya-iw-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.fijezaya-iw-content h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.fijezaya-iw-content h3 a:hover {
    color: #2563eb;
}

.fijezaya-iw-content p {
    margin: 8px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fijezaya-iw-content p.despacho {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 15px;
}

.fijezaya-iw-content p i {
    color: #2563eb;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.fijezaya-iw-content a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.fijezaya-iw-content a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.ver-ficha-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 16px;
    background-color: #2563eb;
    /* Azul de las pestañas */
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.ver-ficha-btn:hover {
    background-color: #1d4ed8;
    /* Azul más oscuro al pasar el ratón */
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Ajustes para la ventana de Google Maps */
.gm-style .gm-style-iw-c {
    padding: 0 !important;
    border-radius: 12px !important;
    /* Bordes más redondeados */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
    max-height: none !important;
}

/* Botón de cerrar */
.gm-style .gm-ui-hover-effect {
    top: 10px !important;
    right: 10px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    width: 30px !important;
    height: 30px !important;
}

.gm-style .gm-ui-hover-effect img {
    margin: 5px !important;
    width: 20px !important;
    height: 20px !important;
}

/* Panel lateral (si se usa) */
#fijezaya-mapa-info {
    border: 1px solid #e5e7eb;
    background: #fff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#fijezaya-mapa-info h3 {
    margin-top: 0;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #374151;
}