/* Info Window - Estilos para Google Maps */

.info-window-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid rgba(229, 9, 20, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 280px;
    min-width: 250px;
}

.info-window-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.info-window-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #e50914;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.info-window-info {
    flex: 1;
    min-width: 0;
}

.info-window-name {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.info-window-subtitle {
    color: #6c757d;
    font-size: 12px;
    font-weight: 500;
}

.info-window-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.info-window-btn {
    background: linear-gradient(135deg, #e50914 0%, #c40812 100%);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
    border: none;
    cursor: pointer;
}

.info-window-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
    text-decoration: none;
    color: white;
}

.info-window-btn:active {
    transform: translateY(0);
}

.info-window-btn-secondary {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.info-window-btn-secondary:hover {
    background: #e9ecef;
    color: #495057;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.info-window-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: #e50914;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.info-window-status {
    color: #666;
    font-size: 11px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.info-window-status-dot {
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
}

.info-window-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Responsividade para telas menores */
@media (max-width: 480px) {
    .info-window-content {
        max-width: 240px;
        min-width: 200px;
        padding: 12px;
    }
    
    .info-window-avatar {
        width: 50px;
        height: 50px;
    }
    
    .info-window-name {
        font-size: 14px;
    }
    
    .info-window-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
